Fixed special characters escaping for nginx config

master
Illia Chub 2021-02-23 11:32:00 +02:00
parent 79d1eb8e59
commit 4feae21eb4
1 changed files with 8 additions and 8 deletions

View File

@ -361,24 +361,24 @@ EOF
rewrite ^/(.*)$ / break; rewrite ^/(.*)$ / break;
''; '';
}; };
"~ ^/([^/\\?&:'\"]+)$" = { "~ ^/([^/\\\\?&:'\\"]+)$" = {
tryFiles = "$uri @root_path"; tryFiles = "\$uri @root_path";
}; };
"=/http-bind" = { "=/http-bind" = {
proxyPass = "http://localhost:5280/http-bind"; proxyPass = "http://localhost:5280/http-bind";
extraConfig = '' extraConfig = ''
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header Host $host; proxy_set_header Host \$host;
''; '';
}; };
"=/external_api.js" = { "=/external_api.js" = {
alias = "${pkgs.jitsi-meet}/libs/external_api.min.js"; alias = "\${pkgs.jitsi-meet}/libs/external_api.min.js";
}; };
"=/config.js" = { "=/config.js" = {
alias = "${pkgs.jitsi-meet}/config.js"; alias = "\${pkgs.jitsi-meet}/config.js";
}; };
"=/interface_config.js" = { "=/interface_config.js" = {
alias = "${pkgs.jitsi-meet}/interface_config.js"; alias = "\${pkgs.jitsi-meet}/interface_config.js";
}; };
}; };
}; };
@ -1273,4 +1273,4 @@ removeSwap
if [[ -z "$NO_REBOOT" ]]; then if [[ -z "$NO_REBOOT" ]]; then
reboot reboot
fi fi