12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- user nginx;
- worker_processes auto;
- 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;
- log_format main '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" '
- '"$http_user_agent" "$http_x_forwarded_for"';
- access_log /var/log/nginx/access.log main;
- sendfile on;
- #tcp_nopush on;
- keepalive_timeout 65;
- server {
- listen 80;
- server_name kejian.filog.cn;
- root /usr/share/nginx/html;
-
- #charset koi8-r;
- access_log /var/log/nginx/host.access.log main;
- error_log /var/log/nginx/error.log error;
-
- location / {
- add_header Access-Control-Allow-Origin *;
- add_header Access-Control-Allow-Methods 'GET, POST, PUT, DELETE, OPTIONS';
- add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
-
- if ($request_method = 'OPTIONS') {
- return 204;
- }
- index index.html index.htm;
-
- try_files $uri $uri/ @fallback;
- }
- location @fallback {
- rewrite ^.*$ /index.html break;
- }
- # proxy_pass
- #location /login {
- # proxy_pass http://192.168.52.130:6032;
- #}
-
- #error_page 404 /404.html;
-
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
- #gzip on;
- include /etc/nginx/conf.d/*.conf;
- }
|