Update nginx.conf
Browse files- nginx.conf +2 -2
nginx.conf
CHANGED
@@ -52,8 +52,8 @@ http {
|
|
52 |
|
53 |
|
54 |
|
55 |
-
location /
|
56 |
-
rewrite ^/
|
57 |
limit_req zone=one burst=15 nodelay;
|
58 |
limit_conn addr 5;
|
59 |
proxy_pass http://backend;
|
|
|
52 |
|
53 |
|
54 |
|
55 |
+
location /ai/ {
|
56 |
+
rewrite ^/ai/(.*)$ /$1 break;
|
57 |
limit_req zone=one burst=15 nodelay;
|
58 |
limit_conn addr 5;
|
59 |
proxy_pass http://backend;
|