fix: removed / in path for unity
This commit is contained in:
parent
3bfbd3f7f9
commit
abdfa98e96
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ server {
|
|||
{% endif %}
|
||||
location {% if item.location_name is defined %}{{ item.location_name }}{% else %}/{% endif %} {
|
||||
{% if item.protocol is defined %}
|
||||
proxy_pass {{ item.protocol }}://{{ item.ip }}:{{ item.port }}{% if item.path is defined %}/{{ item.path }}{% endif %};
|
||||
proxy_pass {{ item.protocol }}://{{ item.ip }}:{{ item.port }}{% if item.path is defined %}{{ item.path }}{% endif %};
|
||||
include proxy_params;
|
||||
{% endif %}
|
||||
{% if item.websocket is defined and item.websocket %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue