alpine support
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-03-28 20:50:39 +02:00
commit e50cb2cdd8
12 changed files with 431 additions and 0 deletions

View File

@ -0,0 +1,23 @@
server {
server_name _;
root /var/www/;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
}
# return 404 for all other php files not matching the front controller
# this prevents access to other php files you don't want to be accessible.
location ~ \.php$ {
return 404;
}
}

View File

@ -0,0 +1,40 @@
server {
server_name _;
root /var/www/public;
location / {
# try to serve file directly, fallback to index.php
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
# optionally set the value of the environment variables used in the application
# fastcgi_param APP_ENV prod;
# fastcgi_param APP_SECRET <app-secret-id>;
# fastcgi_param DATABASE_URL "mysql://db_user:db_pass@host:3306/db_name";
# When you are using symlinks to link the document root to the
# current version of your application, you should pass the real
# application path instead of the path to the symlink to PHP
# FPM.
# Otherwise, PHP's OPcache may not properly detect changes to
# your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
# for more information).
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
# Prevents URIs that include the front controller. This will 404:
# http://domain.tld/index.php/some-path
# Remove the internal directive to allow URIs like this
internal;
}
# return 404 for all other php files not matching the front controller
# this prevents access to other php files you don't want to be accessible.
location ~ \.php$ {
return 404;
}
}

View File

@ -0,0 +1,37 @@
server {
client_max_body_size 108M;
root /var/www/web;
rewrite ^/app\.php/?(.*)$ /$1 permanent;
try_files $uri @rewriteapp;
location @rewriteapp {
rewrite ^(.*)$ /app.php/$1 last;
}
# Deny all . files
location ~ /\. {
deny all;
}
location ~ ^/(app|app_dev)\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_index app.php;
send_timeout 1800;
fastcgi_read_timeout 1800;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
include fastcgi_params;
}
location /(bundles|media) {
access_log off;
expires 30d;
try_files $uri @rewriteapp;
}
}

View File

@ -0,0 +1,38 @@
user www-data;
daemon off;
pid /run/nginx.pid;
worker_processes auto;
worker_rlimit_nofile 65535;
include /etc/nginx/modules/*.conf;
events {
multi_accept on;
worker_connections 65535;
}
http {
charset utf-8;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
server_tokens off;
log_not_found off;
types_hash_max_size 2048;
client_max_body_size 16M;
# MIME
include mime.types;
default_type application/octet-stream;
# logging
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log warn;
#gzip
gzip on;
# load configs
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}

View File

View File

@ -0,0 +1,6 @@
[program:nginx]
command=/usr/sbin/nginx
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
redirect_stderr=true

View File

@ -0,0 +1,6 @@
[program:php-fpm]
command=/usr/local/sbin/php-fpm -R -F
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
redirect_stderr=true

37
docker/tools/ngxconfig Executable file
View File

@ -0,0 +1,37 @@
#!/bin/bash
set -eo pipefail
shopt -s nullglob
CONF_DIR=/etc/nginx/conf.d
usage() {
echo -e "Usage: ngxconfig file\n"
echo -e "Enables given nginx configuration stored in \"${CONF_DIR}\" as \".disabled\"."
echo -e "Exits with code 1 if configuration file was not found.\n"
echo -e "Options:\n"
echo -e " -h | --help\n\tShow this help.\n"
echo -e "Example:\n ngxconfig sf.conf\n"
}
config=
while [[ "$1" != "" ]]; do
case $1 in
-h | --help ) usage
exit
;;
* ) config=$1
esac
shift
done
if [[ -f "/etc/nginx/conf.d/${config}.disabled" ]]; then
echo "Enabling config \"${config}\"..."
rm ${CONF_DIR}/default.conf
mv ${CONF_DIR}/${config}.disabled ${CONF_DIR}/${config}
elif [[ -f "/etc/nginx/conf.d/${config}" ]]; then
echo "Config \"${config}\" already enabled!"
else
echo "Config \"${config}\" not found!"
exit 1
fi