Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
nginx配置如下:
server { listen 8022; server_name _; root /path/path; index index.html; location / { index index.html index.htm; try_files $uri $uri/ @fallback; } location @fallback { rewrite ^.*$ /index.html break; } }