Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

server {
    # 监听的端口号
    listen      80;
    # 域名
    server_name your_domain;
    charset     utf-8;

    # 最大的文件上传尺寸
    client_max_body_size 75M;

    # 静态文件访问的url
    location / {
        # 静态文件地址
       root /root/web/static/admin;
        # 过期时间
       #expires 30d;
    }
    # vue 配置 单页面 访问,统统指向index
error_page 400 304 404 500 502 503 504  /;
}