This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
powerpanel-webview/nginx/public/rundeck.conf
2020-06-05 21:47:16 -05:00

19 lines
418 B
Text

##
# Rundeck, Ansible front-end
##
server {
listen 4444 ssl http2;
listen [::]:4444 ssl http2;
ssl_certificate /etc/letsencrypt/live/werefox.dev/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/werefox.dev/privkey.pem;
ssl_dhparam /etc/letsencrypt/live/werefox.dev/dhparam.pem;
keepalive_timeout 70;
sendfile on;
location / {
proxy_pass http://localhost:4440;
}
}