直链
小于 1 分钟
直链
编辑nginx的配置文件
配置文件通常在/etc/nginx/nginx.conf
开始,通常在里面会引用/etc/nginx/conf.d/*.conf
所以
server {
listen 80;
listen 443 ssl;
server_name your.domain;
ssl_certificate /etc/letsencrypt/live/your.domain/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/your.domain/privkey.pem;
location / {
root /git;
autoindex on;
}
}
这里假设你使用certbot
记得替换your.domain
为你的域名
Powered by Waline v3.0.0-alpha.10