forked from cmilanf/docker-rathena-fluxcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
36 lines (33 loc) · 1.19 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
user www;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
access_log /var/log/nginx/access.log;
keepalive_timeout 3000;
server {
listen 80;
server_name "";
root /var/www;
index index.html index.htm index.php;
client_max_body_size 32m;
error_page 500 502 503 504 /50x.html;
if (!-e $request_filename){
rewrite !\.(js|ico|gif|jpg|png|css|pdf|swf|flv)$ /index.php;
}
location = /50x.html {
root /var/lib/nginx/html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
}