| worker_processes 1; |
|
|
| events { |
| worker_connections 1024; |
| } |
|
|
| http { |
| include mime.types; |
| default_type application/octet-stream; |
|
|
| sendfile on; |
| keepalive_timeout 65; |
|
|
| server { |
| listen 7860; |
| server_name localhost; |
|
|
| root /var/www/html; |
| index index.php index.html index.htm; |
|
|
| location / { |
| try_files $uri $uri/ /index.php?$query_string; |
| } |
|
|
| location ~ \.php$ { |
| fastcgi_pass 127.0.0.1:9000; |
| fastcgi_index index.php; |
| fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
| include fastcgi_params; |
| } |
|
|
| error_log /tmp/nginx_error.log; |
| access_log /tmp/nginx_access.log; |
| } |
| } |
|
|