diff options
author | Malfurious <m@lfurio.us> | 2023-09-15 13:03:34 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-09-16 08:00:08 -0400 |
commit | ba4da49423faaf49500f1b3366909e404f7862ff (patch) | |
tree | 09e285b1a4af323663e8bfa62919adeaa3128b73 /cgit/httpd.conf | |
parent | a6f2c9e34b7a0bdaff2a44b54ca7999728f36773 (diff) | |
download | srcnode-ba4da49423faaf49500f1b3366909e404f7862ff.tar.gz srcnode-ba4da49423faaf49500f1b3366909e404f7862ff.zip |
cgit: Consolidate config files into a single directory
Continue cleaning the folder structure from the previous merge.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'cgit/httpd.conf')
-rw-r--r-- | cgit/httpd.conf | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/cgit/httpd.conf b/cgit/httpd.conf new file mode 100644 index 0000000..50f88aa --- /dev/null +++ b/cgit/httpd.conf @@ -0,0 +1,35 @@ +# https://httpd.apache.org/docs/current/ +# https://httpd.apache.org/docs/current/mod/directives.html + +LoadModule alias_module modules/mod_alias.so +LoadModule authz_core_module modules/mod_authz_core.so +LoadModule cgid_module modules/mod_cgid.so +LoadModule mpm_event_module modules/mod_mpm_event.so +LoadModule unixd_module modules/mod_unixd.so + +ServerRoot "/etc/httpd" +ServerAdmin webmaster@example.com +ServerName localhost +Listen 80 +User http +Group http + +ErrorLog "/var/log/httpd/error_log" +LogLevel warn + +<Directory "/"> + AllowOverride None + Require all denied +</Directory> + +<Directory "/usr/share/webapps/cgit/"> + AllowOverride None + Options ExecCGI FollowSymlinks + Require all granted +</Directory> + +Alias /cgit.css "/usr/share/webapps/cgit/cgit.css" +Alias /cgit.png "/usr/share/webapps/cgit/cgit.png" +Alias /favicon.ico "/usr/share/webapps/cgit/favicon.ico" + +ScriptAlias / "/usr/share/webapps/cgit/cgit.cgi/" |