removed unneeded files

This commit is contained in:
2023-11-20 20:49:53 -06:00
parent 5406e61ba9
commit a673d35f89
3 changed files with 0 additions and 40 deletions
-18
View File
@@ -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;
}
}
-18
View File
@@ -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
-4
View File
@@ -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