forked from rDrama/rDrama
1
0
Fork 0

nginx force exact

master
Aevann 2024-03-10 20:58:43 +02:00
parent e03fc2f43e
commit 97a3f07304
1 changed files with 2 additions and 2 deletions

View File

@ -20,11 +20,11 @@ server {
proxy_pass http://localhost:5001/socket.io;
include includes/headers;
}
location /chat {
location =/chat {
proxy_pass http://localhost:5001/chat;
include includes/headers;
}
location /reply {
location =/reply {
proxy_pass http://localhost:5001/reply;
include includes/headers;
}