40 lines
934 B
Nginx Configuration File
40 lines
934 B
Nginx Configuration File
user www;
|
|
pid /run/nginx.pid;
|
|
error_log /dev/stderr info;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server_tokens off;
|
|
log_format docker '$remote_addr $remote_user $status "$request" "$http_referer" "$http_user_agent" ';
|
|
access_log /var/log/nginx/access.log docker;
|
|
|
|
charset utf-8;
|
|
keepalive_timeout 20s;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
client_max_body_size 1M;
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
server {
|
|
listen 1337;
|
|
server_name _;
|
|
|
|
index index.php;
|
|
root /www;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|