cgit: Fix Atom feed scheme from http to https

before:
<link rel='alternate' title='Atom feed' href='http://cgit.osmocom.org/libosmocore/atom/?h=master' type='application/atom+xml'/>

after:
<link rel='alternate' title='Atom feed' href='https://cgit.osmocom.org/libosmocore/atom/?h=master' type='application/atom+xml'/>

Change-Id: I4000f32ee8e7c55a711f928a19379b3a80a8446f
This commit is contained in:
Harald Welte 2022-06-18 15:26:14 +02:00 committed by laforge
parent 3093787dd9
commit 010d9f30ae
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ server {
fastcgi_param PATH_INFO $uri;
fastcgi_param QUERY_STRING $args;
fastcgi_param HTTP_HOST $server_name;
fastcgi_param HTTPS "on";
fastcgi_pass unix:/run/fcgiwrap.socket;
fastcgi_read_timeout 120s;
}