открываю /admin, обрабатывается как /
Может кто-то знает как исправить?
server {
server_name site.com;
location /admin {
root /home/www/dbclient;
index index.html;
try_files $uri $uri/ @rewrites;
}
location @rewrites {
rewrite ^(.+)$ /index.html last;
}
location /api {
proxy_pass http://127.0.0.1:3000/api;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location / {
proxy_pass http://127.0.0.1:3003;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
Реврайты нжинкса не работают. У вуя на клиенте свой роутер
Как ты vue router сконфигурировал?
Обсуждают сегодня