21 lines
637 B
Plaintext
21 lines
637 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerAdmin webmaster@claremontmakerspace.org
|
||
|
DocumentRoot /var/www/html
|
||
|
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
AllowEncodedSlashes NoDecode
|
||
|
|
||
|
ProxyPass /diagrams/ http://diagrams:5003/diagrams/
|
||
|
# ProxyPassReverse /diagrams/ http://diagrams:5003/
|
||
|
ProxyPreserveHost On
|
||
|
|
||
|
# <Location /diagrams/>
|
||
|
# ProxyPassReverse /
|
||
|
# SetOutputFilter proxy-html
|
||
|
# ProxyHTMLURLMap http://diagrams:5003/ /diagrams/
|
||
|
# ProxyHTMLURLMap / /diagrams/
|
||
|
# </Location>
|
||
|
</VirtualHost>
|
||
|
|
||
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|