1234567891011121314151617181920212223 |
- server {
- listen 80;
- server_name localhost;
- root /usr/share/nginx/html;
- index index.html index.htm index.php;
- location / {
- try_files $uri $uri/ /index.php?$query_string;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- location ~ \.php$ {
- fastcgi_pass cusmvc:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /www/$fastcgi_script_name;
- include fastcgi_params;
- }
- }
|