apache_2_reverse_proxying
no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | apache_2_reverse_proxying [2014/11/24 01:14] (current) – created 0.0.0.0 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Apache_2_Reverse_Proxying ====== | ||
+ | This article will discuss using virtual hosts to allow multiple machines - each with their own domain name (or subdomain) - to be accessed externally on one public IP address, while remaining on port 80, by having one machine proxy requests to the rest by reading the HTTP < | ||
+ | |||
+ | ===== Ubuntu ===== | ||
+ | ==== Installation ==== | ||
+ | | ||
+ | | ||
+ | |||
+ | ==== Basic Configuration File ==== | ||
+ | I recommend creating a new " | ||
+ | NameVirtualHost modsec.atuin.lorddeath.net | ||
+ | < | ||
+ | ServerName modsec.atuin.lorddeath.net | ||
+ | |||
+ | ErrorLog / | ||
+ | # Possible values include: debug, info, notice, warn, error, crit, | ||
+ | # alert, emerg. | ||
+ | LogLevel warn | ||
+ | CustomLog / | ||
+ | ServerSignature On | ||
+ | |||
+ | ProxyRequests Off | ||
+ | ProxyPass / http:// | ||
+ | ProxyPassReverse / http:// | ||
+ | |||
+ | <Proxy *> | ||
+ | Order deny,allow | ||
+ | Allow from all | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ==== Things To Note ==== | ||
+ | * On Ubuntu/ |
apache_2_reverse_proxying.txt · Last modified: by 0.0.0.0