You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally, you should be able to set mode specific proxies for easier development. For example,
# Development (debug) mode configuration when using local backend.
mode :local_debug do
proxy "/", :to => "localhost:3000"
end
# Development (debug) mode configuration when using remote backend.
mode :remote_debug do
proxy "/", :to => "myhost.com:8080", :secure => true
end
But this doesn't work, because all proxy directives are read and later directives override earlier directives.
The text was updated successfully, but these errors were encountered:
Ideally, you should be able to set mode specific proxies for easier development. For example,
But this doesn't work, because all proxy directives are read and later directives override earlier directives.
The text was updated successfully, but these errors were encountered: