diff options
author | Silvino Silva <silvino@bk.ru> | 2016-10-03 22:37:04 +0100 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2016-10-03 22:37:04 +0100 |
commit | ac808f10c9011249da393284b4bc92903d604972 (patch) | |
tree | 762ca1bd4156ebe3099435d285fa2ff23f1860d5 /tools/conf/etc/nginx/sites/laravel.conf | |
parent | 44f7d00ad1d32bae79bca07ee5958a3da163c6e5 (diff) | |
download | doc-ac808f10c9011249da393284b4bc92903d604972.tar.gz |
nginx documentation and configuration review
Diffstat (limited to 'tools/conf/etc/nginx/sites/laravel.conf')
-rw-r--r-- | tools/conf/etc/nginx/sites/laravel.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/conf/etc/nginx/sites/laravel.conf b/tools/conf/etc/nginx/sites/laravel.conf index f648f17..e563a3e 100644 --- a/tools/conf/etc/nginx/sites/laravel.conf +++ b/tools/conf/etc/nginx/sites/laravel.conf @@ -2,21 +2,21 @@ server { listen 443 ssl; # listen [::]:443 ssl; - root /srv/www/atom/public; - server_name core.privat-network.net; + root /srv/www/default/laravel/public; + server_name c9.core - location /sysdoc { - alias /srv/www/sysdoc; + location /c9-doc { + alias /srv/www/c9-doc; index index.html; autoindex on; } - index index.php; 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; |