Skip to content

Instantly share code, notes, and snippets.

@freeseacher
Created January 28, 2019 08:20
Show Gist options
  • Save freeseacher/579064b60d0a47d51a802189af4d1895 to your computer and use it in GitHub Desktop.
Save freeseacher/579064b60d0a47d51a802189af4d1895 to your computer and use it in GitHub Desktop.
location / {
proxy_pass http://my_upsteam;
...
}
location /options {
proxy_pass http://my_upsteam;
..
vhost_traffic_status_filter_by_set_key $status journey::show_form;
...
}
location /country {
proxy_pass http://my_upsteam;
..
vhost_traffic_status_filter_by_set_key $status journey::show_form;
...
}
location /signup {
proxy_pass http://my_upsteam;
..
vhost_traffic_status_filter_by_set_key $status journey::register;
...
}
location /password/restore {
proxy_pass http://my_upsteam;
..
vhost_traffic_status_filter_by_set_key $status journey::reset_password;
...
}
location /password/new {
proxy_pass http://my_upsteam;
..
vhost_traffic_status_filter_by_set_key $status journey::reset_password;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment