Created
February 16, 2024 23:11
-
-
Save febnug/b4694f0e4a435b627980ba39a9ddb76e to your computer and use it in GitHub Desktop.
reverse proxy apache2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ProxyRequests Off | |
ProxyPreserveHost On | |
ServerName site.name.tls | |
<Proxy *> | |
Require all granted | |
</Proxy> | |
ProxyPass "/" "<ip_or_website:19999/" connectiontimeout=5 timeout=30 keepalive=on | |
ProxyPassReverse "/" "ip_or_website:19999/" | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment