|
@@ -39,9 +39,19 @@ DocumentRoot "/var/www/html/"
|
39
|
39
|
</Directory>
|
40
|
40
|
|
41
|
41
|
<Location "/api/">
|
42
|
|
- ProxyPass http://BACKEND_HOST:BACKEND_PORT/
|
|
42
|
+ ProxyPass http://BACKEND_HOST:BACKEND_PORT/ retry=0
|
43
|
43
|
ProxyPassReverse http://BACKEND_HOST:BACKEND_PORT/
|
44
|
44
|
</Location>
|
|
45
|
+<Location "/signalr/">
|
|
46
|
+ ProxyPass http://BACKEND_HOST:BACKEND_PORT/signalr/ retry=0
|
|
47
|
+ ProxyPassReverse http://BACKEND_HOST:BACKEND_PORT/signalr/
|
|
48
|
+</Location>
|
|
49
|
+<Location "/signalr/connect">
|
|
50
|
+ ProxyPass ws://BACKEND_HOST:BACKEND_PORT/signalr/connect retry=0
|
|
51
|
+</Location>
|
|
52
|
+<Location "/signalr/reconnect">
|
|
53
|
+ ProxyPass ws://BACKEND_HOST:BACKEND_PORT/signalr/reconnect retry=0
|
|
54
|
+</Location>
|
45
|
55
|
|
46
|
56
|
|
47
|
57
|
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
|