From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [182.253.183.71]) by gnuweeb.org (Postfix) with ESMTPSA id 4F40D7E257; Wed, 19 Oct 2022 23:59:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666223980; bh=MEXz0jUVd6waa5Zw9KG1VQXsySyzm9VfACHjnqWn3Mk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KIIjJdHk2UULOi9RexBIK/4XbDLTCq/HMC3A1zDZKAxiqNLx18nxEB0WT6kWaJi3i 91cnbhgHjtAg1RLCoZ6qHnK+i6MOrSaW4Opun9UxsHcMzmlHN8hxrcR7khgHzCpqae Qt0vQuTW8LAiIHsgvTuVaLif1oC9WqVTt/bzE7VOlIlu+C6hzuXpyCZPpNYrb6i2sb euMDkzKW36kYnkCg4l/8HkTyh/Zck+MFm2xOrda4jXkimM0qbQS8lmDWb2VCZxIs+C Dtib4qMFd8aH+gD+y27bYaSH9WcCSBylF4tWHanGhR2buhCy3fkkyZm+EZv/QkFoyg kT3wM685y7Uxg== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v1 2/2] Create logs directory for nginx log Date: Thu, 20 Oct 2022 06:59:26 +0700 Message-Id: <20221019235926.1830064-3-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221019235926.1830064-1-ammarfaizi2@gnuweeb.org> References: <20221019235926.1830064-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Create "logs" directory inside the project directory, ignore all files inside this directory except the ".gitignore" file. We will use this directory to save access.log and error.log from the nginx web server. Signed-off-by: Ammar Faizi --- logs/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 logs/.gitignore diff --git a/logs/.gitignore b/logs/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore -- Ammar Faizi