Skip to content

Commit

Permalink
pass through query string #70
Browse files Browse the repository at this point in the history
  • Loading branch information
pssc committed Mar 8, 2024
1 parent 67e13ff commit 7319568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lms/rootfs-ingress/etc/nginx/servers/ingress.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ server {
deny all;

proxy_pass http://127.0.0.1:9000/%%skin%%/;
proxy_redirect ~^/(.*) $scheme://$http_host%%ingress_entry%%/$1;
proxy_redirect ~^/(.*) $scheme://$http_host%%ingress_entry%%/$1$is_args$args;

sub_filter_once off;
sub_filter_types text/plain text/css application/javascript application/x-javascript text/javascript;
Expand Down Expand Up @@ -51,7 +51,7 @@ server {
deny all;

proxy_pass http://127.0.0.1:9000;
proxy_redirect ~^/(.*) $scheme://$http_host%%ingress_entry%%/$1;
proxy_redirect ~^/(.*) $scheme://$http_host%%ingress_entry%%/$1$is_args$args;

sub_filter_once off;
sub_filter_types text/plain text/css application/javascript application/x-javascript text/javascript;
Expand Down

0 comments on commit 7319568

Please sign in to comment.