31 lines
609 B
Text
31 lines
609 B
Text
|
# copied to /etc/nginx/conf.d/default.conf
|
||
|
server {
|
||
|
listen 80 default_server;
|
||
|
|
||
|
root /var/www/html/ts3web/public;
|
||
|
|
||
|
index index.html index.htm index.php;
|
||
|
|
||
|
server_name _;
|
||
|
|
||
|
charset utf-8;
|
||
|
|
||
|
location = /favicon.ico { log_not_found off; access_log off; }
|
||
|
location = /robots.txt { log_not_found off; access_log off; }
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.php$is_args$args;
|
||
|
}
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
fastcgi_pass unix:/run/php/php-fpm.sock;
|
||
|
include fastcgi.conf;
|
||
|
}
|
||
|
|
||
|
error_page 404 /index.php;
|
||
|
|
||
|
location ~ /\.ht {
|
||
|
deny all;
|
||
|
}
|
||
|
}
|