Apache2 в качестве обратного прокси-сервера - отправлять URL-адреса без изменений
Я запускаю приложение Sinatra на тонком сервере за apache2 в качестве обратного прокси-сервера (Lubuntu OS).
Я намерен просто передать запрос с неизменным URL-адресом (для некоторого тестирования безопасности для Path Traversal) на тонкий сервер, работающий на localhost. Я не хочу, чтобы Apache самостоятельно управлял какими-либо статическими ресурсами, и я нигде не установил DocumentRoot. Но при отправке URL-адресов, содержащих шаблон "/../" (или версию%2f), он заканчивается ошибкой 404 или ошибочным запросом (на стороне Apache).
Я попробовал какой-то подход, как объяснено здесь https://stackoverflow.com/questions/4390436/need-to-allow-encoded-slashes-on-apache и установил nocanon в ProxyPass + AllowEncodedSlashes On и NoDecode.
Мой конфиг VirtualHost
<VirtualHost 192.168.56.101:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName 127.0.0.1
ServerAdmin vantuch@gmail.com
ServerSignature Off
ProxyRequests Off
<Proxy *>
Order Allow,Deny
Allow from all
</Proxy>
AllowEncodedSlashes On
AllowEncodedSlashes NoDecode
# ProxyPassMatch "^/(.*)$" "http://127.0.0.1:9292/$1" nocanon
ProxyPass / http://127.0.0.1:9292/ nocanon
ProxyPassReverse / http://127.0.0.1:9292/ nocanon
ProxyVia On
# DocumentRoot /home/michalvantuch/Desktop/Honeypot/public
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Но это не похоже на работу. Как я мог попытаться решить эту проблему?
Благодарю.