58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
Plaintext
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
index index.php;
|
|
root /var/www/app;
|
|
client_max_body_size 32M;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ /plugins/.*/Assets/ {
|
|
allow all;
|
|
}
|
|
|
|
location ~ /(app|data|libs|plugins|vendor|cli) {
|
|
deny all;
|
|
return 404;
|
|
}
|
|
|
|
location ~* ^.+\.(log|sqlite)$ {
|
|
return 404;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
return 404;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass unix:/var/run/php/php-fpm.sock;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
}
|
|
|
|
location ~* ^.+\.(ico|jpg|gif|png|css|js|svg|eot|ttf|woff|woff2|otf)$ {
|
|
log_not_found off;
|
|
expires 7d;
|
|
etag on;
|
|
}
|
|
|
|
gzip on;
|
|
gzip_comp_level 3;
|
|
gzip_disable "msie6";
|
|
gzip_vary on;
|
|
gzip_types
|
|
text/javascript
|
|
application/javascript
|
|
application/json
|
|
text/xml
|
|
application/xml
|
|
application/rss+xml
|
|
text/css
|
|
text/plain;
|
|
}
|