server { listen 80; listen [::]:80; server_name YOURLS; root /var/www/YOURLS; index index.php index.html; access_log /var/log/nginx/YOURLS.access.log; error_log /var/log/nginx/YOURLS.error.log; location / { try_files $uri $uri/ /yourls-loader.php$is_args$args; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9074; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi.conf; } ##### Стандартные настройки для любого хоста location = /robots.txt { access_log off; log_not_found off; } location = /favicon.ico { access_log off; log_not_found off; } # Запрет доступа к скрытым файлам, файлы названия которых начинаются с точки) location ~ /\. { access_log off; log_not_found off; deny all; } #####