31 lines
772 B
Plaintext
31 lines
772 B
Plaintext
server {
|
||
listen 80;
|
||
server_name yourdomain.com;
|
||
|
||
# 强制将所有HTTP请求重定向到HTTPS
|
||
return 301 https://$host$request_uri;
|
||
}
|
||
|
||
server {
|
||
listen 443 ssl;
|
||
server_name yourdomain.com;
|
||
|
||
# SSL配置
|
||
ssl_certificate /path/to/your/certificate.crt;
|
||
ssl_certificate_key /path/to/your/private.key;
|
||
|
||
# 其他SSL配置(可选)
|
||
ssl_protocols TLSv1.2 TLSv1.3;
|
||
ssl_ciphers HIGH:!aNULL:!MD5;
|
||
|
||
# 处理所有URI
|
||
location / {
|
||
# 你的后端服务配置
|
||
proxy_pass http://your_backend_server;
|
||
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;
|
||
}
|
||
}
|