cgit: fix Atom feed hostname from localhost to cgit.osmocom.org

Before:
$ curl -s https://cgit.osmocom.org/libosmocore/ | grep "Atom feed"
<link rel='alternate' title='Atom feed' href='http://localhost/libosmocore/atom/?h=master' type='application/atom+xml'/>

After:
$ curl -s https://cgit.osmocom.org/libosmocore/ | grep "Atom feed"
<link rel='alternate' title='Atom feed' href='http://cgit.osmocom.org/libosmocore/atom/?h=master' type='application/atom+xml'/>

Change-Id: Iaab14e254acc0356f0d3639924e3b6b528d57973
This commit is contained in:
Harald Welte 2022-06-18 15:23:33 +02:00 committed by laforge
parent 9ccb78afeb
commit 3093787dd9
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ server {
# ssl_certificate /etc/nginx/certs/final.crt;
# ssl_certificate_key /etc/nginx/certs/private.key;
server_name localhost;
server_name cgit.osmocom.org;
index cgit.cgi;
root /usr/share/cgit;