Added other containers
Some checks reported warnings
Build and push image / Build (push) Has been cancelled

This commit is contained in:
Jack
2023-08-26 00:15:47 +01:00
parent 12e2b4b186
commit dd6b348e65
92 changed files with 250 additions and 5 deletions

View File

@@ -0,0 +1 @@
logs:$apr1$9znsu67g$DLTtWVglCJKPUglRz/4yw0

View File

@@ -0,0 +1,6 @@
root /var/www/Jack;
error_page 404 /Error/error-404.php;
error_page 500 /Error/error-500.php;
error_page 502 /Error/error-502.php;
error_page 503 /Error/error-503.php;
error_page 504 /Error/error-504.php;

View File

@@ -0,0 +1,13 @@
# regex to split $uri to $fastcgi_script_name and $fastcgi_path
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
# Check that the PHP script exists before passing it
try_files $fastcgi_script_name =404;
# Bypass the fact that try_files resets $fastcgi_path_info
# see: http://trac.nginx.org/nginx/ticket/321
set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;
fastcgi_index index.php;
include fastcgi.conf;

View File

@@ -0,0 +1,5 @@
# Self signed certificates generated by the ssl-cert package
# Don't use them in a production server!
ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;