Re: Set location based on query arg

2016-11-11 Thread ulik
Thanks Francis, that is an interesting approach (with a map). Will give it a try. And good point on only allowing pre-defined patterns to be passed from arg to root. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,270868,270882#msg-270882 ___

Re: Set location based on query arg

2016-11-10 Thread ulik
Here is what I want to do, in nginx conf language: server { listen 80; server_name www.example.com; # root when path query arg is present if ($arg_path) { root /var/www/example/$arg_path; } # root when path query arg is not present (default) if (!$arg_pat

Set location based on query arg

2016-11-10 Thread ulik
Is it possible to set/modify location based on the query string arg from request? Here is the scenario: Request: www.example.com/demo?path=abc Docroot: /var/www/example/abc/ Request: www.example.com/demo?path=xyz Docroot: /var/www/example/xyz/ Posted at Nginx Forum: https://forum.nginx.org/rea