diff options
author | Bryan Newbold <bnewbold@archive.org> | 2017-08-05 13:07:50 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2017-08-05 13:07:50 -0700 |
commit | 6b83183a205cb1e90c690c7e7f71c447cfae9a32 (patch) | |
tree | 870ae93beb63ce3d3b338346cff3a8f2fb35bcd1 /adze_extras/nginx-sites/default | |
parent | 8974dd5f9351c666a1144b0584189d3a07c62351 (diff) | |
download | infra-6b83183a205cb1e90c690c7e7f71c447cfae9a32.tar.gz infra-6b83183a205cb1e90c690c7e7f71c447cfae9a32.zip |
backup adze nginx config
Diffstat (limited to 'adze_extras/nginx-sites/default')
-rw-r--r-- | adze_extras/nginx-sites/default | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/adze_extras/nginx-sites/default b/adze_extras/nginx-sites/default new file mode 100644 index 0000000..c08cff9 --- /dev/null +++ b/adze_extras/nginx-sites/default @@ -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; + } + +} |