Get the default configuration file viewvc-fcgi.conf for Apache, optimized for CentOS Linux 7. This example configuration ensures optimal compatibility and performance for Apache, making it easy to set up and adjust to meet your needs.
Find and download the configuration file here: /etc/httpd/conf.d/viewvc-fcgi.conf.
For more configurations and setup guides, visit our related files section to further customize your system.
ScriptAlias /viewvc /usr/lib/python2.7/site-packages/viewvc/bin/wsgi/viewvc.fcgi
Alias /viewvc-static /usr/share/viewvc/templates/docroot
<Directory /usr/lib/python2.7/site-packages/viewvc/bin/wsgi>
Options -Indexes
<Files viewvc.fcgi>
<IfModule mod_authz_core.c>
# Apache 2.4
Require local
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order allow,deny
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Files>
</Directory>
<Directory /usr/share/viewvc/templates/docroot>
Options -Indexes
<IfModule mod_authz_core.c>
# Apache 2.4
Require local
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order allow,deny
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>
Download the raw file with wget or curl
wget -O viewvc-fcgi.conf.example https://exampleconfig.com/static/raw/apache/centos7/etc/httpd/conf.d/viewvc-fcgi.conf
curl https://exampleconfig.com/static/raw/apache/centos7/etc/httpd/conf.d/viewvc-fcgi.conf > viewvc-fcgi.conf.example
Other config files you might find useful