主配置文件:
/etc/nginx/nginx.conf
自定义配置文件:
/etc/nginx/conf.d/*
加载自定义配置文件(在 nginx.conf
中配置):
include 需要加载的配置文件
server {
listen 80;
#请填写绑定证书的域名
server_name wiki.hty1024.com;
#把http的域名请求转成https
return 301 https://$host$request_uri;
}
server {
#SSL 默认访问端口号为 443
listen 443 ssl;
#请填写绑定证书的域名
server_name wiki.hty1024.com;
#请填写证书文件的相对路径或绝对路径
ssl_certificate /etc/nginx/conf.d/wiki.hty1024.com.crt;
#请填写私钥文件的相对路径或绝对路径
ssl_certificate_key /etc/nginx/conf.d/wiki.hty1024.com.key;
ssl_session_timeout 5m;
#请按照以下协议配置
ssl_protocols TLSv1.2 TLSv1.3;
#请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
ssl_prefer_server_ciphers on;
# 转发至后台服务
location / {
#网站主页路径。此路径仅供参考,具体请您按照实际目录操作。
#例如,您的网站主页在 Nginx 服务器的 /etc/www 目录下,则请修改 root 后面的 html 为 /etc/www。
proxy_pass http://127.0.0.1:3000;
}
# 部署静态页面
location / {
#网站主页路径。此路径仅供参考,具体请您按照实际目录操作。
#例如,您的网站主页在 Nginx 服务器的 /etc/www 目录下,则请修改 root 后面的 html 为 /etc/www。
root html;
index index.html index.htm;
}
}