349989153 / 349989153.github.io

My personal blog.
0 stars 0 forks source link

Nginx服务器端配置 #13

Open 349989153 opened 4 years ago

349989153 commented 4 years ago
    server {
        listen 80;
        server_name newtimecenter.gxrb.com.cn;

        location / {
            root /usr/node/newTimeCenter;
            index index.html index.htm;
        }

        location /pages {
            alias /usr/node/newTimeCenter;
            try_files $uri $uri/ /index.html;
        }
    }
349989153 commented 3 years ago

这是适应单页应用的router的配置