46 lines
957 B
Text
46 lines
957 B
Text
|
user www;
|
||
|
pid /run/nginx.pid;
|
||
|
error_log /dev/stderr info;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
server_tokens off;
|
||
|
|
||
|
charset utf-8;
|
||
|
keepalive_timeout 20s;
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
client_max_body_size 2M;
|
||
|
|
||
|
include /etc/nginx/mime.types;
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name _;
|
||
|
|
||
|
index index.php;
|
||
|
root /www/public;
|
||
|
|
||
|
# We sure hope so that we don't spill any secrets
|
||
|
# within the open directory on /storage
|
||
|
|
||
|
location /storage {
|
||
|
autoindex on;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.php?$query_string;
|
||
|
location ~ \.php$ {
|
||
|
try_files $uri =404;
|
||
|
fastcgi_pass unix:/run/php-fpm.sock;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
include fastcgi_params;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|