etc/apache2/hg.conf
author František Kučera <franta-hg@frantovo.cz>
Thu, 29 Oct 2020 19:21:19 +0100
branchv_0
changeset 24 1d46fb79b1af
parent 22 b2cb46ae50f7
permissions -rw-r--r--
allow the ~ character in the URL
     1 <VirtualHost *:80>
     2 		ServerName  …
     3 		ServerAlias …
     4 
     5 		ServerAdmin webmaster@localhost
     6 		DocumentRoot /var/www/html
     7 
     8 		Alias /robots.txt /var/www/html/robots.txt
     9 		ProxyPassMatch ^/robots.txt !
    10 
    11 		ProxyPass "/" "http://localhost:16169/"
    12 		ProxyPassReverse "/" "http://localhost:16169/"
    13 
    14 		ErrorLog ${APACHE_LOG_DIR}/error.log
    15 		CustomLog ${APACHE_LOG_DIR}/access.log combined
    16 </VirtualHost>