Answer the question
In order to leave comments, you need to log in
How to exclude .well-known from apache procuration?
Once upon a time, I set up proxying of one site - the 80th port of the router was already forwarded, and I needed access to it on another server. It all looked like this:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName rt.site.ru
ProxyPass / http://192.168.0.92/
ProxyPreserveHost On
</VirtualHost>
Answer the question
In order to leave comments, you need to log in
Maybe so:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName rt.site.ru
ProxyPass /.well-known ! # добавляем исключение
ProxyPass / http://192.168.0.92/
ProxyPreserveHost On
</VirtualHost>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question