File urbackup-server-apache.conf of Package urbackup-server
Alias /urbackup "/usr/share/urbackup/www"
<Directory "/usr/share/urbackup/www">
AllowOverride All
Options FollowSymLinks
DirectoryIndex index.html index.htm
<IfModule mod_authz_core.c>
# Apache 2.4
#Require all granted
Require local
#Require host .example.com
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
#Order allow,deny
#Allow from all
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
#Allow from .example.com
</IfModule>
</Directory>
# enable bevor: a2enmod proxy_fcgi
ProxyPass "/urbackup/x" "fcgi://127.0.0.1:55413"