diff options
author | Malfurious <m@lfurio.us> | 2024-03-12 03:28:58 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-03-12 03:28:58 -0400 |
commit | ae4689915e7997e96c84fbb8c68f3575835895f3 (patch) | |
tree | 7ab984ec9aafd60d954c1a5900523fbd86b4d956 | |
parent | 0ec552bba12f8bc2ab51db7af0042d09ad25a782 (diff) | |
download | srcnode-ae4689915e7997e96c84fbb8c68f3575835895f3.tar.gz srcnode-ae4689915e7997e96c84fbb8c68f3575835895f3.zip |
cgit: Add robots.txt route
cgit does include a robots.txt file, but the previous server
configuration did not allow it to be served.
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | cgit/httpd.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cgit/httpd.conf b/cgit/httpd.conf index cd36af4..6ffe913 100644 --- a/cgit/httpd.conf +++ b/cgit/httpd.conf @@ -38,5 +38,6 @@ Alias /logo.png "/usr/share/normalmode/logo.png" 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" +Alias /robots.txt "/usr/share/webapps/cgit/robots.txt" ScriptAlias / "/usr/share/webapps/cgit/cgit.cgi/" |