/etc/apache2/conf-available/umegaya.conf is in umegaya 1.0.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Alias /umegaya/fields-stats /var/lib/umegaya/fields-stats
Alias /umegaya/license-stats /var/lib/umegaya/license-stats
<IfModule !rewrite_module>
Alias /umegaya /usr/share/umegaya/htdocs/error-modrewrite
</IfModule>
Alias /umegaya /usr/share/umegaya/htdocs
<Directory /usr/share/umegaya/htdocs>
Options +FollowSymLinks
<IfModule rewrite_module>
RewriteEngine on
RewriteRule ^$ /cgi-bin/umegaya?help=1
RewriteRule ^table/([\w_\-]+)$ /cgi-bin/umegaya?table=1;key=$1 [B]
RewriteRule ^yaml/([\w_\-]+)$ /cgi-bin/umegaya?yaml=1;key=$1 [B]
RewriteRule ^([a-z0-9\.\-\+]+)/([\w_\-]+)$ /cgi-bin/umegaya?package=$1;key=$2 [B]
</IfModule>
</Directory>
#<VirtualHost *:80>
# ServerName umegaya.example.com
# ServerAdmin umegaya@example.com
# DocumentRoot /usr/share/umegaya/htdocs
#</VirtualHost>
|