env can modify size and time of uploads

This commit is contained in:
lenovo
2022-10-22 20:02:47 +02:00
parent c16ad4963d
commit e783428a51
8 changed files with 71 additions and 218 deletions

View File

@@ -24,14 +24,9 @@ RESET = "\e[0m"
COMPOSE = ./srcs/docker-compose.yml COMPOSE = ./srcs/docker-compose.yml
# same as 'LOGIN' var in .env file VOLUME_PATH = $(shell grep "MAP_VOLUMES" ./srcs/.env | cut -d "=" -f 2)
#V_USER = hulamy VOLUMES_D = $(VOLUME_PATH)/wp_volume \
#V_USER = $(shell echo $(USER)) # gives root when make is run with sudo $(VOLUME_PATH)/db_volume
#V_USER = $(shell who | head -1 | tr " " "\n" | head -1) # gives bad result when in `sudo su`
#V_USER = $(shell who | head -1 | cut -d " " -f 1) # gives bad result when in `sudo su`
V_USER = $(shell users | tr " " "\n" | head -1)
VOLUMES_D = /home/$(V_USER)/data/wp_volume \
/home/$(V_USER)/data/db_volume
WP_URL = $(shell grep "WP_URL" ./srcs/.env | cut -d "=" -f 2) WP_URL = $(shell grep "WP_URL" ./srcs/.env | cut -d "=" -f 2)
# list of running containers, see : https://stackoverflow.com/questions/10024279/how-to-use-shell-commands-in-makefile # list of running containers, see : https://stackoverflow.com/questions/10024279/how-to-use-shell-commands-in-makefile
@@ -45,11 +40,12 @@ VOLUMES = $(shell docker volume ls -q)
all: build up all: build up
volumes: volumes:
sed -i "s/^LOGIN=.*/LOGIN=$(V_USER)/g" ./srcs/.env
mkdir -p $(VOLUMES_D) mkdir -p $(VOLUMES_D)
build: build:
- bash -c 'echo -e "\n# adding for inception (you can delete it)\n127.0.0.1 $(WP_URL)" >> /etc/hosts' - if ! grep "127.0.0.1 ${WP_URL}" /etc/hosts 2> /dev/null; then \
bash -c 'echo -e "\n# adding for inception (you can delete it)\n127.0.0.1 $(WP_URL)" >> /etc/hosts'; \
fi
docker-compose -f $(COMPOSE) build docker-compose -f $(COMPOSE) build
up: volumes up: volumes
@@ -84,7 +80,6 @@ fclean-images: clean
docker system prune -af docker system prune -af
fclean-volumes: clean fclean-volumes: clean
- docker volume rm $(VOLUMES) - docker volume rm $(VOLUMES)
- rm -rf $(VOLUMES_D)
fclean: fclean-images fclean-volumes fclean: fclean-images fclean-volumes
re: fclean all re: fclean all

View File

@@ -1,8 +1,4 @@
# DOCKER-COMPOSE
LOGIN=lenovo
# MARIADB SETUP # MARIADB SETUP
DB_HOST=mariadb DB_HOST=mariadb
@@ -24,3 +20,9 @@ WP_USER=moehu36
WP_USER_PSWD="it's a secret for nobody" WP_USER_PSWD="it's a secret for nobody"
WP_USER_EMAIL=moehu36@42.fr WP_USER_EMAIL=moehu36@42.fr
# MAP
MAX_UPLOAD_SIZE=2046
EXECUTION_TIME=2000
MAP_VOLUMES=/home/lenovo/data/lejourduprof

View File

@@ -29,6 +29,7 @@ services:
context: ./requirements/nginx context: ./requirements/nginx
args: args:
- WP_URL=${WP_URL} - WP_URL=${WP_URL}
- MAX_UPLOAD_SIZE=${MAX_UPLOAD_SIZE}
image: nginx image: nginx
container_name: nginx_container container_name: nginx_container
depends_on: depends_on:
@@ -68,6 +69,8 @@ services:
context: ./requirements/wordpress context: ./requirements/wordpress
args: args:
- WP_DIR=${WP_DIR} - WP_DIR=${WP_DIR}
- MAX_UPLOAD_SIZE=${MAX_UPLOAD_SIZE}
- EXECUTION_TIME=${EXECUTION_TIME}
image: wordpress image: wordpress
container_name: wordpress_container container_name: wordpress_container
depends_on: depends_on:
@@ -81,15 +84,13 @@ volumes:
driver_opts: driver_opts:
type: none type: none
o: "bind" o: "bind"
device: /home/${LOGIN}/data/wp_volume device: ${MAP_VOLUMES}/wp_volume
# device: ${HOME}/data/wp_volume
db_volume: db_volume:
driver: local driver: local
driver_opts: driver_opts:
type: none type: none
o: "bind" o: "bind"
device: /home/${LOGIN}/data/db_volume device: ${MAP_VOLUMES}/db_volume
# device: ${HOME}/data/db_volume
networks: networks:
inception: inception:

View File

@@ -1,45 +1,35 @@
# debian (~ 180s) --------------------------------------------
# FROM debian:buster FROM alpine:3.15
#
# # vim for debug
# RUN apt update && apt install -y \
# nginx openssl \
# vim \
# && \
# rm -rf /var/lib/apt/lists/*
#
# # nginx conf
# COPY ./conf/nginx.conf.debian /etc/nginx/nginx.conf
# COPY ./conf/inception_nginx.conf /etc/nginx/conf.d/
# alpine (~ 45s) --------------------------------------------- # vim and bash for debug
RUN apk update && apk add \
nginx openssl \
vim bash \
&& \
rm -rf /var/cache/apk*
FROM alpine:3.15 # nginx conf
COPY ./conf/nginx.conf.alpine /etc/nginx/nginx.conf
COPY ./conf/inception_nginx.conf /etc/nginx/http.d/
# vim and bash for debug # create user www-data and assign it to group www-data
RUN apk update && apk add \ RUN adduser -S www-data && \
nginx openssl \ adduser www-data www-data
vim bash \
&& \
rm -rf /var/cache/apk*
# nginx conf RUN mkdir -p /var/www/html
COPY ./conf/nginx.conf.alpine /etc/nginx/nginx.conf
COPY ./conf/inception_nginx.conf /etc/nginx/http.d/
# create user www-data and assign it to group www-data ARG WP_URL
RUN adduser -S www-data && \ ARG MAX_UPLOAD_SIZE
adduser www-data www-data
RUN mkdir -p /var/www/html
# common -----------------------------------------------------
# replace WP_URL # replace WP_URL
ARG WP_URL
RUN sed -i "s/\${WP_URL}/${WP_URL}/g" /etc/nginx/http.d/inception_nginx.conf RUN sed -i "s/\${WP_URL}/${WP_URL}/g" /etc/nginx/http.d/inception_nginx.conf
# replace max file size upload
RUN sed -i "s/\(client_max_body_size \).*\(m;\)/\1${MAX_UPLOAD_SIZE}\2/g" /etc/nginx/nginx.conf
# empty /var/www/html folder to avoid it to rewrite volume
#RUN rm -rf /var/www/html/*
# personalized index.html # personalized index.html
COPY ./conf/index.html /data/www/ COPY ./conf/index.html /data/www/
@@ -52,36 +42,3 @@ RUN openssl req -newkey rsa:2048 -nodes -x509 -days 365 \
ENTRYPOINT [ "nginx", "-g", "daemon off;" ] ENTRYPOINT [ "nginx", "-g", "daemon off;" ]
#
# -g 'daemon off' :
# daemon off, to avoid the main process of nginx to quit after creating its childs, and therefore make docker exit
# https://stackoverflow.com/questions/18861300/how-to-run-nginx-within-a-docker-container-without-halting
#
# ssl certificate :
# openssl faq : https://www.openssl.org/docs/faq.html
# openssl req : create ertificate request, and optionally create self signed certificates
# openssl req man : https://www.openssl.org/docs/man1.0.2/man1/openssl-req.html
# exemple of openssl with nginx on docker : https://www.johnmackenzie.co.uk/posts/using-self-signed-ssl-certificates-with-docker-and-nginx/
#
# usually the steps are :
# - create a server private key : `openssl genrsa -out server.key 2048`
# - create a CSR (certificate signing request) with the key : `openssl req -new -key server.key -out www.exemple.com.csr`
# - it will ask for :
# - Country Name (2 letter code)
# - State or Province Name (full name)
# - Locality Name (eg, city)
# - Organization Name (eg, company)
# - Organizational Unit Name (eg, section)
# - Common Name (eg, fully qualified host name)
# - Email Address (put nothing)
# - now ask to a CA (certificate authority) for a certificate.crt by giving them your request.csr
#
# alternatively we can generate our self-signed certificate with the `openssl req` command :
# - `x509` option is used to output a certificate instead of a certificate request
# - a request is created from scratch, if it is not given with `-in`
# - `newkey` generate a new private key, unless `-key` is given
# - `nodes` create a private key without encryption (no passphrase needed)
#
# SO discussion about becomming a real CA to have a certificate that works in deployement : https://stackoverflow.com/questions/10175812/how-to-generate-a-self-signed-ssl-certificate-using-openssl
#

View File

@@ -8,10 +8,6 @@
# #
# < ssl_protocols TLSv1.2 TLSv1.3; # < ssl_protocols TLSv1.2 TLSv1.3;
# > ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; # > ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
#
# http :
# < client_max_body_size 640m;
# > client_max_body_size 1m;
# /etc/nginx/nginx.conf # /etc/nginx/nginx.conf
@@ -55,7 +51,7 @@ http {
# indicated by the request header Content-Length. If the stated content # indicated by the request header Content-Length. If the stated content
# length is greater than this size, then the client receives the HTTP # length is greater than this size, then the client receives the HTTP
# error code 413. Set to 0 to disable. Default is '1m'. # error code 413. Set to 0 to disable. Default is '1m'.
client_max_body_size 640m; client_max_body_size 1m;
# Sendfile copies data between one FD and other from within the kernel, # Sendfile copies data between one FD and other from within the kernel,
# which is more efficient than read() + write(). Default is off. # which is more efficient than read() + write(). Default is off.

View File

@@ -1,60 +1,43 @@
# debian -----------------------------------------------------
# FROM debian:buster FROM alpine:3.15
#
# # bash and vim for debug
# RUN apt update && apt install -y \
# php7.3 \
# php7.3-fpm \
# php7.3-mysqli \
# mariadb-client \
# curl \
# bash vim
# RUN rm -rf /var/lib/apt/lists/*
#
# # fpm config
# COPY ./conf/www.conf /etc/php/7.3/fpm/pool.d/
# RUN mkdir /run/php/
#
# ENV PHP_VERSION="php-fpm7.3"
# alpine ----------------------------------------------------- # bash and vim for debug
RUN apk update && apk add \
php7 \
php7-fpm \
php7-mysqli \
php7-phar \
php7-json \
php7-iconv \
mariadb-client \
curl \
bash vim
RUN rm -rf /var/lib/apt/lists/*
FROM alpine:3.15 # fpm config
COPY ./conf/www.conf /etc/php7/php-fpm.d/
RUN mkdir /run/php/
# bash and vim for debug ARG WP_DIR
RUN apk update && apk add \ ARG MAX_UPLOAD_SIZE
php7 \ ARG EXECUTION_TIME
php7-fpm \
php7-mysqli \
php7-phar \
php7-json \
php7-iconv \
mariadb-client \
curl \
bash vim
RUN rm -rf /var/lib/apt/lists/*
# fpm config # create wp directory
COPY ./conf/www.conf /etc/php7/php-fpm.d/ RUN mkdir -p ${WP_DIR}
RUN mkdir /run/php/
# create wp directory # replace max file size upload and execution time
ARG WP_DIR RUN sed -i "s/\(upload_max_filesize = \).*\(M\)/\1${MAX_UPLOAD_SIZE}\2/g" /etc/php7/php.ini && \
RUN mkdir -p ${WP_DIR} sed -i "s/\(post_max_size = \).*\(M\)/\1${MAX_UPLOAD_SIZE}\2/g" /etc/php7/php.ini && \
sed -i "s/\(max_execution_time = \).*/\1${EXECUTION_TIME}/g" /etc/php7/php.ini
# MAP for creation of map plugin # create www-data user and add to group
COPY ./conf/map_prof/ ${WP_DIR}/wp-content/plugins/map_prof RUN adduser -S www-data && \
# modify .htaccess adduser www-data www-data
COPY ./conf/htaccess ${WP_DIR}/.htaccess
# create www-data user and add to group ENV PHP_VERSION="php-fpm7"
RUN adduser -S www-data && \
adduser www-data www-data
ENV PHP_VERSION="php-fpm7" # empty /var/www/html folder to avoid it to rewrite volume
#RUN rm -rf ${WP_DIR}/*
# common -----------------------------------------------------
# install wp-cli : https://wp-cli.org/#installing # install wp-cli : https://wp-cli.org/#installing
RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar &&\ RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar &&\

View File

@@ -1,5 +0,0 @@
php_value upload_max_filesize 640M
php_value post_max_size 640M
php_value memory_limit 640M
php_value max_execution_time 300
php_value max_input_time 300

View File

@@ -1,76 +0,0 @@
<?php
/**
* @package map_prof
* @version 1.0.0
*/
/*
Plugin Name: map_prof
Plugin URI:
Description: add/remove locations on map at publication/deletion of posts
Author: hugogogo
Version: 1.0.0
Author URI:
*/
// function hello_dolly_get_lyric() {
// /** These are the lyrics to Hello Dolly */
// $lyrics = "Hello, Dolly
// ...
// Dolly'll never go away again";
//
// // Here we split it into lines.
// $lyrics = explode( "\n", $lyrics );
//
// // And then randomly choose a line.
// return wptexturize( $lyrics[ mt_rand( 0, count( $lyrics ) - 1 ) ] );
// }
//
// // This just echoes the chosen line, we'll position it later.
// function hello_dolly() {
// $chosen = hello_dolly_get_lyric();
// $lang = '';
// if ( 'en_' !== substr( get_user_locale(), 0, 3 ) ) {
// $lang = ' lang="en"';
// }
//
// printf(
// '<p id="dolly"><span class="screen-reader-text">%s </span><span dir="ltr"%s>%s</span></p>',
// __( 'Quote from Hello Dolly song, by Jerry Herman:' ),
// $lang,
// $chosen
// );
// }
//
// // Now we set that function up to execute when the admin_notices action is called.
// add_action( 'admin_notices', 'hello_dolly' );
//
// // We need some CSS to position the paragraph.
// function dolly_css() {
// echo "
// <style type='text/css'>
// #dolly {
// float: right;
// padding: 5px 10px;
// margin: 0;
// font-size: 12px;
// line-height: 1.6666;
// }
// .rtl #dolly {
// float: left;
// }
// .block-editor-page #dolly {
// display: none;
// }
// @media screen and (max-width: 782px) {
// #dolly,
// .rtl #dolly {
// float: none;
// padding-left: 0;
// padding-right: 0;
// }
// }
// </style>
// ";
// }
//
// add_action( 'admin_head', 'dolly_css' );