diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-11 13:54:22 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-11 13:54:22 +0000 |
commit | e60e99796111ee6d43080b4e48971c08886c0570 (patch) | |
tree | 481e8fd119b3afdd0e2a2730ce1f41d623577e9e /roles/cgit/files/httpd.conf | |
parent | 48208c520bb15d16b0eab623b97fa5e86c6f665c (diff) | |
download | rules-e60e99796111ee6d43080b4e48971c08886c0570.tar.gz |
roles: Add git and cgit roles
Diffstat (limited to 'roles/cgit/files/httpd.conf')
-rw-r--r-- | roles/cgit/files/httpd.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/cgit/files/httpd.conf b/roles/cgit/files/httpd.conf new file mode 100644 index 0000000..238acf0 --- /dev/null +++ b/roles/cgit/files/httpd.conf @@ -0,0 +1,20 @@ + +# httpd ~~ /etc/httpd.conf +# managed by Ansible + +server "default" { + listen on * port 1234 + root "/htdocs/stagit" + + location match "style.css" { + request rewrite "/style.css" + } + + location match "logo.png" { + request rewrite "/logo.png" + } + + location match "favicon.png" { + request rewrite "/logo.png" + } +} |