Skip to content

Instantly share code, notes, and snippets.

@liuxinglanyue
Last active February 17, 2017 07:40
Show Gist options
  • Save liuxinglanyue/0040da50d1faac0cd16f to your computer and use it in GitHub Desktop.
Save liuxinglanyue/0040da50d1faac0cd16f to your computer and use it in GitHub Desktop.
user root;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include 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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
proxy_buffer_size 128k;
proxy_buffers 32 32k;
proxy_busy_buffers_size 128k;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location /log/ {
#禁止浏览器直接访问
internal;
limit_rate 200k;
alias /root/data/;
error_page 404 =200 @backend;
}
location @backend {
proxy_pass http://10.222.138.16:8086/openapi/open$request_uri;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#break;
}
location /openapi/ {
proxy_pass http://10.222.138.16:8086/$request_uri;
}
location / {
root html;
index index.html index.htm;
}
#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 html;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment