From a673d35f895a6a1a62df0369976e15e5200b1731 Mon Sep 17 00:00:00 2001 From: akanealw Date: Mon, 20 Nov 2023 20:49:53 -0600 Subject: [PATCH] removed unneeded files --- rss-bridge/nginx.conf | 18 ------------------ rss-bridge/php-fpm.conf | 18 ------------------ rss-bridge/php.ini | 4 ---- 3 files changed, 40 deletions(-) delete mode 100644 rss-bridge/nginx.conf delete mode 100644 rss-bridge/php-fpm.conf delete mode 100644 rss-bridge/php.ini diff --git a/rss-bridge/nginx.conf b/rss-bridge/nginx.conf deleted file mode 100644 index f0f189e..0000000 --- a/rss-bridge/nginx.conf +++ /dev/null @@ -1,18 +0,0 @@ -server { - listen 80 default_server; - listen [::]:80 default_server; - root /app; - access_log /var/log/nginx/access.log; - error_log /var/log/nginx/error.log; - index index.php; - - location ~ /(\.|vendor|tests) { - deny all; - return 403; # Forbidden - } - - location ~ \.php$ { - include snippets/fastcgi-php.conf; - fastcgi_pass unix:/var/run/php/php8.2-fpm.sock; - } -} diff --git a/rss-bridge/php-fpm.conf b/rss-bridge/php-fpm.conf deleted file mode 100644 index a508a0f..0000000 --- a/rss-bridge/php-fpm.conf +++ /dev/null @@ -1,18 +0,0 @@ -; Inspired by https://github.com/docker-library/php/blob/master/8.2/bookworm/fpm/Dockerfile - -[global] -error_log = /proc/self/fd/2 - -; https://github.com/docker-library/php/pull/725#issuecomment-443540114 -log_limit = 8192 - -[www] -; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work. -; https://bugs.php.net/bug.php?id=73886 -access.log = /proc/self/fd/2 - -clear_env = no - -; Ensure worker stdout and stderr are sent to the main error log. -catch_workers_output = yes -decorate_workers_output = no diff --git a/rss-bridge/php.ini b/rss-bridge/php.ini deleted file mode 100644 index 115f1c8..0000000 --- a/rss-bridge/php.ini +++ /dev/null @@ -1,4 +0,0 @@ -; Inspired by https://github.com/docker-library/php/blob/master/8.2/bookworm/fpm/Dockerfile - -; https://github.com/docker-library/php/issues/878#issuecomment-938595965' -fastcgi.logging = Off