blob: 881b177ff3ce7871d5cae6e0880ac2645ba180c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# {{ ansible_managed }}
# Default server configuration
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
# SSL configuration (fall through)
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;
}
}
|