diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-04-09 23:16:19 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-04-09 23:16:19 -0400 |
commit | a2463bf3e8feb50a8b4d9450ec0745fa9d6b4e5e (patch) | |
tree | e057e3b252d78fa0af35eaf63a6f0875bf88bd0b /roles/nginx/templates | |
parent | 68f2a39b1494c4959d37d54f1733d169183bab38 (diff) | |
download | infra-a2463bf3e8feb50a8b4d9450ec0745fa9d6b4e5e.tar.gz infra-a2463bf3e8feb50a8b4d9450ec0745fa9d6b4e5e.zip |
nginx: first pass of live, workable nginx role
Diffstat (limited to 'roles/nginx/templates')
-rw-r--r-- | roles/nginx/templates/etc_nginx_sites-available_default.j2 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/roles/nginx/templates/etc_nginx_sites-available_default.j2 b/roles/nginx/templates/etc_nginx_sites-available_default.j2 new file mode 100644 index 0000000..1b0ec79 --- /dev/null +++ b/roles/nginx/templates/etc_nginx_sites-available_default.j2 @@ -0,0 +1,28 @@ +# Default server configuration +server { + listen 80 default_server; + listen [::]:80 default_server; + server_name _; + + # SSL configuration + # + # listen 443 ssl default_server; + # listen [::]:443 ssl default_server; + # + # Self signed certs generated by the ssl-cert package + # Don't use them in a production server! + # + # include snippets/snakeoil.conf; + + root /srv/http/default/www; + + # Add index.php to the list if you are using PHP + index index.html index.htm index.nginx-debian.html; + + location / { + # First attempt to serve request as file, then + # as directory, then fall back to displaying a 404. + try_files $uri $uri/ =404; + } + +} |