Skip to content

Commit

Permalink
Issue #2148335 by mattman - Add Default Localhost Vhost.
Browse files Browse the repository at this point in the history
  • Loading branch information
omega8cc committed Jan 3, 2014
1 parent da2f7eb commit 811ecdd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions http/Provision/Config/Nginx/server.tpl.php
Expand Up @@ -229,6 +229,17 @@
}
}

server {
listen 127.0.0.1:80;
server_name 127.0.0.1;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}

#######################################################
### nginx virtual domains
#######################################################
Expand Down

0 comments on commit 811ecdd

Please sign in to comment.