90 lines
3.1 KiB
Nginx Configuration File
90 lines
3.1 KiB
Nginx Configuration File
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
# https配置参考 start
|
|
#listen 443 ssl;
|
|
|
|
# 证书直接存放 /docker/nginx/cert/ 目录下即可 更改证书名称即可 无需更改证书路径
|
|
#ssl on;
|
|
#ssl_certificate /etc/nginx/cert/xxx.local.crt; # /etc/nginx/cert/ 为docker映射路径 不允许更改
|
|
#ssl_certificate_key /etc/nginx/cert/xxx.local.key; # /etc/nginx/cert/ 为docker映射路径 不允许更改
|
|
#ssl_session_timeout 5m;
|
|
#ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
|
|
#ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
#ssl_prefer_server_ciphers on;
|
|
# https配置参考 end
|
|
|
|
# 演示环境配置 拦截除 GET POST 之外的所有请求
|
|
# if ($request_method !~* GET|POST) {
|
|
# rewrite ^/(.*)$ /403;
|
|
# }
|
|
|
|
# location = /403 {
|
|
# default_type application/json;
|
|
# return 200 '{"msg":"演示模式,不允许操作","code":500}';
|
|
# }
|
|
|
|
# 限制外网访问内网 actuator 相关路径
|
|
location ~ ^(/[^/]*)?/actuator(/.*)?$ {
|
|
return 403;
|
|
}
|
|
|
|
location / {
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header REMOTE-HOST $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
location /prod-api/ {
|
|
proxy_redirect off;
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header REMOTE-HOST $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
proxy_pass http://cfhi-server:8080/;
|
|
}
|
|
|
|
# https 会拦截内链所有的 http 请求 造成功能无法使用
|
|
# 解决方案1 将 admin 服务 也配置成 https
|
|
# 解决方案2 将菜单配置为外链访问 走独立页面 http 访问
|
|
# location /admin/ {
|
|
# proxy_set_header Host $http_host;
|
|
# proxy_set_header X-Real-IP $remote_addr;
|
|
# proxy_set_header REMOTE-HOST $remote_addr;
|
|
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
# proxy_pass http://monitor-admin/admin/;
|
|
# }
|
|
|
|
# https 会拦截内链所有的 http 请求 造成功能无法使用
|
|
# 解决方案1 将 xxljob 服务 也配置成 https
|
|
# 解决方案2 将菜单配置为外链访问 走独立页面 http 访问
|
|
# location /xxl-job-admin/ {
|
|
# proxy_set_header Host $http_host;
|
|
# proxy_set_header X-Real-IP $remote_addr;
|
|
# proxy_set_header REMOTE-HOST $remote_addr;
|
|
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
# proxy_pass http://xxljob-admin/xxl-job-admin/;
|
|
# }
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root html;
|
|
}
|
|
}
|