Skip to content

nginx配置

1、默认nginx配置

bash
[root@wiki conf.d]# cat wiki.onedayxyy.cn.conf
server {
    listen 80;
    server_name wiki.onedayxyy.cn;
    #配置https重定向
    return 301 https://$host$request_uri;
}



server {
    listen  443 ssl;
    server_name  wiki.onedayxyy.cn;

    root /root/rsync/rsync-vitepress/dist;    
    location / {
        index index.html index.htm;
        try_files $uri $uri/ /index.html;
    } 

    location /images {
        alias /images;
        index index.html;
      valid_referers none blocked *.onedayxyy.cn onedayxyy.cn *.gitee.com gitee.com localhost 127.0.0.1;
      if ( $invalid_referer ) {
           # 如不满足,指定访问如下资源
           rewrite ^/ https://onedayxyy.cn/error/1.png;
           return 403;
      }
    }
    
    location /home {
    alias /root/home3.0/;
        index index.html index.htm;
    }



    location /wiki {
    alias /root/rsync/rsync-docusaurus/build;
        index index.html index.htm;
    }

    location /newyear {
    alias /root/rsync/rsync-qianduan-demo/qianduan-demo/newyear;
        index index.html index.htm;
    }


    location /error {
        autoindex on; # 启用目录索引
        alias /FdangDaoLianImages;
        index index.html;   # 默认显示index.html文件,如果没有则列出目录内容
    }   
    

    ssl_certificate             /etc/letsencrypt/live/onedayxyy.cn/fullchain.pem;
    ssl_certificate_key         /etc/letsencrypt/live/onedayxyy.cn/privkey.pem; 

    ssl_session_timeout 5m;
    ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
    ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
    ssl_prefer_server_ciphers on;
    add_header Strict-Transport-Security "max-age=31536000";
    
    access_log /var/log/nginx/onedayxyy.cn.https.log;
}

2、Teeker推荐配置

2025年3月14日配置

@One|onedayxyy.cn https://vitepress.dev/zh/guide/deploy#nginx 你的 nginx 是这样配置吗


  • 配置方法


  • 自己配置
bash
[root@wiki conf.d]# cat wiki.onedayxyy.cn.conf
server {
    gzip on;
    gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    listen 80;
    server_name _;
    index index.html;

    location / {
        # content location
        root /root/rsync/rsync-vitepress/dist;

        # exact matches -> reverse clean urls -> folders -> not found
        try_files $uri $uri.html $uri/ =404;

        # non existent pages
        error_page 404 /404.html;

        # a folder without index.html raises 403 in this setup
        error_page 403 /404.html;

        # adjust caching headers
        # files in the assets folder have hashes filenames
        location ~* ^/assets/ {
            expires 1y;
            add_header Cache-Control "public, immutable";
        }
    }
}



server {
    listen  443 ssl;
    server_name  wiki.onedayxyy.cn;

    root /root/rsync/rsync-vitepress/dist;    
    location / {
        index index.html index.htm;
        try_files $uri $uri/ /index.html;
    } 

    location /images {
        alias /images;
        index index.html;
      valid_referers none blocked *.onedayxyy.cn onedayxyy.cn *.gitee.com gitee.com localhost 127.0.0.1;
      if ( $invalid_referer ) {
           # 如不满足,指定访问如下资源
           rewrite ^/ https://onedayxyy.cn/error/1.png;
           return 403;
      }
    }
    
    location /home {
    alias /root/home3.0/;
        index index.html index.htm;
    }



    location /wiki {
    alias /root/rsync/rsync-docusaurus/build;
        index index.html index.htm;
    }

    location /newyear {
    alias /root/rsync/rsync-qianduan-demo/qianduan-demo/newyear;
        index index.html index.htm;
    }


    location /error {
        autoindex on; # 启用目录索引
        alias /FdangDaoLianImages;
        index index.html;   # 默认显示index.html文件,如果没有则列出目录内容
    }   
    

    ssl_certificate             /etc/letsencrypt/live/oneday

这里不用改成自己域名的:


  • 测试