16:c639338d47a0
Anton Shestakov <av6@dwimlabs.net>, Tue, 02 Jan 2018 17:58:25 +0800
move server_name to the top

previous change 2:7f4ad9be3e85

roles/nginx/files/etc/nginx/sites-available/nginx_status

Permissions: -rw-r--r--

Other formats: Feeds:
server {
server_name localhost;
listen 127.0.0.1:80;
listen [::1]:80;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
}