自用根证书
rootCA.pem[1]
证书研究 mkcert
工具
安装web station
添加虚拟主机
配置想要使用的域名
勾选80/443
通过ssh 登录 进入
/usr/local/etc/nginx/conf.d
目录
找到乱码目录名
新建 文件
vim user.conf.proxy
按 i
location ^~ /
{
#端口修改为群晖默认端口
proxy_pass http://127.0.0.1:8000/;
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 REMOTE-HOST $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_http_version 1.1;
# proxy_hide_header Upgrade;
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
set $static_fileSVzP652q 0;
if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
{
set $static_fileSVzP652q 1;
expires 1m;
}
}
按esc 输入 :wq! 回车保存
打开web station 选择虚拟主机 直接保存即生效