12345678910111213141516171819202122 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
- #charset koi8-r;
- #access_log /var/log/nginx/host.access.log main;
- location / {
- root /usr/share/nginx/html;
- try_files $uri $uri/ @router;
- index index.html index.htm;
- }
- location @router {
- rewrite ^.*$ /index.html last;
- }
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
|