1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #user nobody;
- 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;
- client_max_body_size 30m;
- server {
- listen 10900;
- server_name localhost;
- charset utf-8;
- location ^~/business {
- proxy_pass http://192.168.1.212:10901/upcloud-rdc-tms-business-service;
- proxy_set_header X-Real-IP $remote_addr;
- }
- location ^~/maindata {
- proxy_pass http://192.168.1.212:10901/upcloud-rdc-tms-maindata-service;
- proxy_set_header X-Real-IP $remote_addr;
- }
- #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;
- }
- }
- # images port
- server {
- listen 10139;
- server_name localhost;
- #charset koi8-r;
- #access_log /var/log/nginx/host.access.log main;
- location / {
- root /usr/local/images/;
- }
- }
- }
|