123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- # For more information on configuration, see:
- # * Official English Documentation: http://nginx.org/en/docs/
- # * Official Russian Documentation: http://nginx.org/ru/docs/
- user nginx;
- worker_processes auto;
- error_log /var/log/nginx/error.log;
- pid /run/nginx.pid;
- worker_rlimit_nofile 51200;
- # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
- include /usr/share/nginx/modules/*.conf;
- events {
- worker_connections 2048;
- }
- http {
- 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;
- tcp_nodelay on;
- keepalive_timeout 6;
- types_hash_max_size 2048;
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
- # Load modular configuration files from the /etc/nginx/conf.d directory.
- # See http://nginx.org/en/docs/ngx_core_module.html#include
- # for more information.
- include /etc/nginx/conf.d/*.conf;
- server {
- listen 443 ssl;
- server_name venus.kuaidianban.cn;
- root /usr/share/nginx/html;
- ssl_certificate "/etc/pki/nginx/cert.crt";
- ssl_certificate_key "/etc/pki/nginx/private.key";
- ssl_session_cache shared:SSL:1m;
- ssl_session_timeout 5m;
- ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
- ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
- ssl_prefer_server_ciphers on;
- # Load configuration files for the default server block.
- include /etc/nginx/default.d/*.conf;
- location / {
- try_files $uri $uri/ /index.html;
- }
- location /venus/ {
- proxy_pass https://127.0.0.1:8888/venus/;
- add_header Access-Control-Allow-Origin *;
- add_header 'Access-Control-Allow-Credentials' 'true';
- add_header Access-Control-Allow-Methods "POST, GET, OPTIONS";
- add_header Access-Control-Allow-Headers "Origin, Authorization, Accept";
- add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
-
- proxy_set_header Host $http_host;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "upgrade";
- }
-
- location /adminapi/ {
- proxy_pass https://brace.0592jizhang.com/adminapi/;
- add_header Access-Control-Allow-Origin *;
- add_header 'Access-Control-Allow-Credentials' 'true';
- add_header Access-Control-Allow-Methods "POST, GET, OPTIONS";
- add_header Access-Control-Allow-Headers "Origin, Authorization, Accept";
- add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
- }
-
- location /api/ {
- proxy_pass https://brace.0592jizhang.com/api/;
- add_header Access-Control-Allow-Origin *;
- add_header 'Access-Control-Allow-Credentials' 'true';
- add_header Access-Control-Allow-Methods "POST, GET, OPTIONS";
- add_header Access-Control-Allow-Headers "Origin, Authorization, Accept";
- add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
- }
-
- location /services/ {
- proxy_pass http://open.api.tianyancha.com/services/;
- add_header Access-Control-Allow-Origin *;
- add_header 'Access-Control-Allow-Credentials' 'true';
- add_header Access-Control-Allow-Methods "POST, GET, OPTIONS";
- add_header Access-Control-Allow-Headers "Origin, Authorization, Accept";
- add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
- }
- error_page 404 /404.html;
- location = /404.html {
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- }
- }
- }
|