2015-12-24 17:17:46 +01:00
|
|
|
user www-data www-data;
|
|
|
|
daemon off;
|
|
|
|
worker_processes 4;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 768;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
include mime.types;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
keepalive_timeout 20;
|
|
|
|
|
2016-11-05 20:42:54 +01:00
|
|
|
client_max_body_size 10m;
|
|
|
|
|
2015-12-24 17:17:46 +01:00
|
|
|
index index.html index.php;
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
root /var/www/shaarli;
|
|
|
|
|
|
|
|
access_log /var/log/nginx/shaarli.access.log;
|
|
|
|
error_log /var/log/nginx/shaarli.error.log;
|
|
|
|
|
|
|
|
location ~ /\. {
|
|
|
|
# deny access to dotfiles
|
|
|
|
access_log off;
|
|
|
|
log_not_found off;
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ ~$ {
|
|
|
|
# deny access to temp editor files, e.g. "script.php~"
|
|
|
|
access_log off;
|
|
|
|
log_not_found off;
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
|
|
|
|
# cache static assets
|
|
|
|
expires max;
|
|
|
|
add_header Pragma public;
|
|
|
|
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
|
|
|
|
}
|
|
|
|
|
2016-11-05 19:51:03 +01:00
|
|
|
location = /favicon.ico {
|
|
|
|
# serve the Shaarli favicon from its custom location
|
|
|
|
alias /var/www/shaarli/images/favicon.ico;
|
|
|
|
}
|
|
|
|
|
2015-12-24 17:17:46 +01:00
|
|
|
location ~ (index)\.php$ {
|
|
|
|
# filter and proxy PHP requests to PHP-FPM
|
|
|
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi.conf;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
|
|
|
# deny access to all other PHP scripts
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|