about summary refs log tree commit diff stats
path: root/tools/conf/etc/nginx/sites/laravel.conf
blob: addfd1838585293a0225659a77d766197fb9b246 (plain) (blame)
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
server {
    listen 443 ssl;
    # listen [::]:443 ssl;

    root /srv/www/default/laravel/public;
    server_name machine.example

    location /doc {
        alias /srv/www/doc;
        index index.html;
        autoindex on;
    }

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
        index index.php;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_index index.php;
        # try_files $uri /index.php =404;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        # fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_pass 127.0.0.1:9000;
    }
}