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 BEBC47E257; Wed, 19 Oct 2022 23:59:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1666223972; bh=LwAbckyQC342a+icBsMOZ25tkLCiH4u2dKZ2vX6bDO4=; h=From:To:Cc:Subject:Date:From; b=JARx7xfaumNhXET+xyhBsJyKXQIVdJErru4Aw1tZpaXLWNtVhLmuLtux8lLsD9quA 6f0e18wxH14WFngfbQJad1J99L0nF5wJj7LGgtfgaTDgWkB6kKkZvdJGB1lHvU9RcL ZpGp1KoNG1Np+FbRD0JV448+A2zreY2diZ/6qZX8uJ8wOfVkOFuqulU3YnCGp8E0Xy fYj5GZiTgoW+IyAFFaVMYjnbqWFfbtnR+WiIKiBDdqXGbJe7k35mn0Th2QIXgvSB4B Lp47D0sTYlzqiPbXpX2h8QWS4kZDasGX7vx59Q7wD+PaN8ehUEKiGW/NrHcs550YlN M19zz52Q1luVQ== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH website v1 0/2] nginx integration Date: Thu, 20 Oct 2022 06:59:24 +0700 Message-Id: <20221019235926.1830064-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hi, This is the starting point of the web server integration (nginx). There are two patches in this series. # Patch 1: Lock file update after "npm install". After invoking "npm install" command, these two lock files are changed. Sycn them with this commit. # Patch 2: Create logs directory for nginx log. 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 --- Ammar Faizi (2): Lock file update after "npm install" Create logs directory for nginx log logs/.gitignore | 2 + package-lock.json | 13357 ++++++++++++++++++++++++++++++++++++++++++++ yarn.lock | 8446 ++++++++++++++-------------- 3 files changed, 17568 insertions(+), 4237 deletions(-) create mode 100644 logs/.gitignore create mode 100644 package-lock.json -- Ammar Faizi