laforge has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/28385 )
Change subject: cgit: fix Atom feed hostname from localhost to cgit.osmocom.org ...................................................................... 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 --- M cgit/config/nginx.conf 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified diff --git a/cgit/config/nginx.conf b/cgit/config/nginx.conf index 8c3595c..80f0c81 100644 --- a/cgit/config/nginx.conf +++ b/cgit/config/nginx.conf @@ -6,7 +6,7 @@ # 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; -- To view, visit https://gerrit.osmocom.org/c/docker-playground/+/28385 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: docker-playground Gerrit-Branch: master Gerrit-Change-Id: Iaab14e254acc0356f0d3639924e3b6b528d57973 Gerrit-Change-Number: 28385 Gerrit-PatchSet: 2 Gerrit-Owner: laforge <[email protected]> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <[email protected]> Gerrit-Reviewer: laforge <[email protected]> Gerrit-Reviewer: osmith <[email protected]> Gerrit-MessageType: merged
