We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Apache and mod_proxy should not decode/encode slashes and leave them as they are:
<VirtualHost *:80> AllowEncodedSlashes NoDecode ProxyPass /npm http://127.0.0.1:4873 nocanon ProxyPassReverse /npm http://127.0.0.1:4873 </VirtualHost>
(by https://github.com/rlidwka/sinopia/issues/380)
server { listen 80 default_server; location /sinopia/ { if ($request_uri ~* "^/sinopia(.*)$") { proxy_pass http://127.0.0.1:4873$1; } proxy_pass http://127.0.0.1:4873/; } }