From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_LOW autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 14250 invoked from network); 13 Aug 2021 21:25:13 -0000 Received: from lists.zx2c4.com (165.227.139.114) by inbox.vuxu.org with ESMTPUTF8; 13 Aug 2021 21:25:13 -0000 Received: by lists.zx2c4.com (ZX2C4 Mail Server) with ESMTP id 89a6a540; Fri, 13 Aug 2021 21:25:02 +0000 (UTC) Return-Path: <0102017b41675ea3-e22bef87-7635-4723-8358-3b350cf2d2f1-000000@eu-west-1.amazonses.com> Received: from a7-35.smtp-out.eu-west-1.amazonses.com (a7-35.smtp-out.eu-west-1.amazonses.com [54.240.7.35]) by lists.zx2c4.com (ZX2C4 Mail Server) with ESMTPS id 0f4d64c0 (TLSv1.2:ECDHE-ECDSA-AES256-SHA384:256:NO) for ; Fri, 13 Aug 2021 21:24:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=dbjf277sxfqvcitqewlqwv72dug4udzr; d=costas.dev; t=1628889898; h=From:To:Subject:In-Reply-To:Date:Message-ID:MIME-Version:Content-Type; bh=Z0QCdgaV/0NG6p1i3xB95moYIIUb8MD0pSqnttrhLVQ=; b=KKBJK+UrrHXlF3Ue3cLlDGwWY6SjGkutXNyB+DCRjzvcwXHRC9g7DAgJBrE+b4VC vI0GM2f/ZVeWXRDr7HVulS9VzA/24PWOUscl9qM2c0md3uhLL0qAQlwQYjluMjAJEKm TQnPPGilcZMSne2uv1PyUjL8XMujDWoiUdU31L0A= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=uku4taia5b5tsbglxyj6zym32efj7xqv; d=amazonses.com; t=1628889898; h=From:To:Subject:In-Reply-To:Date:Message-ID:MIME-Version:Content-Type:Feedback-ID; bh=Z0QCdgaV/0NG6p1i3xB95moYIIUb8MD0pSqnttrhLVQ=; b=AuVQUwxGJquQbH8GSkZ+5JEugccXy17j4TNWiETytag/LyPJ2TYxaMGSHgLvGRIc meMMBSnLy3yMM9s43Vk0TVP4biIsIwHmVjT5Hi/Ev23TsS77URB/Xf5jBN82kxf65y+ GRd4E1C+ps1/Y2/G53hwVw4BKg4uSVNkSPee02gA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=costas.dev; s=mail; t=1628889897; bh=Z0QCdgaV/0NG6p1i3xB95moYIIUb8MD0pSqnttrhLVQ=; h=From:To:Subject:In-Reply-To:Date:From; b=rk8/FhgZEqWpdvu0nI3RBU0XLxWZScATnVW6nuoWOq86hBEusOneN1eCozprXSFca a/R8i70yFHvOv4/DfTKI32WrOgta1orjDkmlNe9NFmALxOLtkFCFGynQVvI/johNKx xV1K8cLk6QeG2N5ObmYSdKMhmCfx1bE4fxsI0y9BRgvMOnikwJU5M89T523j5E5+hw N91hdCn6BC//9Tx6EXBWyIqUwIGAsjOmk8hBgivBwK9xfoTgKlpr/UVS3QUr+KrXw+ 9MJMsSk2dpSCpVmSC//EonKbP6IRMR0DGbj0wJ7CDmIi5OVby/IqO71nSumX1J45sy Fpu0Qvot5KJ6A== From: Ariel Costas To: cgit@lists.zx2c4.com Subject: Re: cannot get cgit display anything except the repo listing page In-Reply-To: <20210813223903.d4faee5c2f49c9112246611a@web.de> (message from Torsten Kuehnel on Fri, 13 Aug 2021 22:39:03 +0200) Date: Fri, 13 Aug 2021 21:24:58 +0000 Message-ID: <0102017b41675ea3-e22bef87-7635-4723-8358-3b350cf2d2f1-000000@eu-west-1.amazonses.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Feedback-ID: 1.eu-west-1.u42cjhJLz89h5tO3tttko6rzc3rjWalb+v41EBzwiRw=:AmazonSES X-SES-Outgoing: 2021.08.13-54.240.7.35 X-BeenThere: cgit@lists.zx2c4.com X-Mailman-Version: 2.1.30rc1 Precedence: list List-Id: List for cgit developers and users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: cgit-bounces@lists.zx2c4.com Sender: "CGit" --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable It does seem like a problem when calling the CGI script. Perhaps you could debug what cgit is getting from your NGINX? You could try creating a new file `/var/www/htdocs/cgit/debug.cgi` with the contents: #!/bin/bash echo "Content-Type: text/plain" echo "" printenv What this script does is: run bash, respond with the Content-Type header and a plaintext body containing all the environment variables passed by NGINX. Give it execution permissions and owned by www-data, then point NGINX to that script and visit the site. Check the QUERY_STRING, PATH_INFO and HTTP_HOST and see if they are the correct ones. Is there something strange? =2D-=20 Ariel Costas (https://costas.dev) Encrypt your email -- https://emailselfdefense.org/ GnuPG public key -- https://costas.dev/pgp --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYIAB0WIQSdpKZA7JyquCdAx91ykQbFYAAEigUCYRbjJAAKCRBykQbFYAAE irt+AP95mUqyJALJqLSf8OxqU1Wj7DA7NpaveDO/PiByfH5VGAD/S1wCin58Yipz uDMrnTJHQHJi9zSb2b+pAw8ZLDSqlwk= =U30t -----END PGP SIGNATURE----- --=-=-=--