summaryrefslogtreecommitdiff
path: root/automated/linux/lemp/debian-nginx.conf
blob: 3e3e3e7788476144a6ace00e51feb94e79d362bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
        listen 80 default_server;
        listen [::]:80 default_server;

        root /usr/share/nginx/html;
        index index.php index.html index.htm;
        server_name localhost;

        location / {
                try_files $uri $uri/ =404;
        }

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
        }
}