[Libre-soc-bugs] [Bug 190] Setup Gitlab CI Runner for Kazan on a computer

bugzilla-daemon at libre-soc.org bugzilla-daemon at libre-soc.org
Fri Apr 1 07:05:22 BST 2022


https://bugs.libre-soc.org/show_bug.cgi?id=190

--- Comment #48 from Jacob Lifshay <programmerjake at gmail.com> ---
proxying /.well-known:

server {
        listen 80;
        listen [::]:80;

        listen 443 ssl;
        listen [::]:443 ssl;

        server_name build.programmerjake.tk;
        ssl_certificate /etc/letsencrypt/live/programmerjake.tk/fullchain.pem;
        ssl_certificate_key
/etc/letsencrypt/live/programmerjake.tk/privkey.pem;
        # Redirect non-https traffic to https
        if ($scheme != "https") {
                return 301 https://$host$request_uri;
        }

        location /.well-known {
                root /var/www/html;
                index index.html index.htm index.nginx-debian.html;
                try_files $uri $uri/ =404;
        }

        location / {
                proxy_pass http://jacob-build-server.programmerjake.tk/;
        }
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the libre-soc-bugs mailing list