跳至主要內容

直链

小于 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