25 lines
841 B
Plaintext
25 lines
841 B
Plaintext
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
server_name oidc-bazhong.t-aaron.com;
|
|
|
|
# SSL证书配置
|
|
ssl_certificate /etc/nginx/t-aaron.com.pem;
|
|
ssl_certificate_key /etc/nginx/t-aaron.com.key;
|
|
ssl_session_timeout 5m;
|
|
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
|
|
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
location / {
|
|
proxy_pass http://OIDC-SERVERbazhong:8090;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
# 只添加这一行来修复重定向
|
|
proxy_redirect http://oidc-bazhong.t-aaron.com https://oidc-bazhong.t-aaron.com:2443;
|
|
}
|
|
}
|