19 lines
418 B
Text
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;
|
|
}
|
|
}
|