Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In Apache HTTPD, you'll need something like:

Code Block
<VirtualHost *:80>
    AllowEncodedSlashes NoDecode
    ServerName shibui.unicon.net
    ProxyPass / http://localhost:8080/ nocanon
    ProxyPassReverse / http://localhost:8080/
</VirtualHost>

Note the AllowEncodedSlashes NoDecode.

...