|
{{ ansible_header | comment }}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name status.crans.org;
|
|
|
|
access_log /var/log/nginx/status.log combined;
|
|
error_log /var/log/nginx/status.error.log;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
proxy_redirect off;
|
|
}
|
|
}
|