forked from xeoncross/wnmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.nginx.conf
48 lines (42 loc) · 1.1 KB
/
example.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
37
38
39
40
41
42
43
44
45
46
47
48
# Example "nginx/conf/nginx.conf" file
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
root /wemp/www;
index index.html index.htm index.php;
error_page 500 502 503 504 /50x.html;
server {
listen 80 default;
server_name localhost;
# Route all requests for PHP files to PHP-fastcgi
location ~ \.php($|/) {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
}
# Example MicroMVC/CodeIgniter/KohanaPHP/Zend Framework site
#server {
# listen 80;
# server_name yourserver.tld www.yourserver.tld;
# root /wemp/www/yourserver.tld;
#
# # Route all requests for non-existent files to index.php
# if (!-e $request_filename) {
# rewrite ^/(.*)$ /index.php/$1 last;
# }
#
# # Route all requests for PHP files to PHP-fastcgi
# location ~ \.php($|/) {
# include fastcgi_params;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# fastcgi_pass 127.0.0.1:9000;
# }
#}
}