Compare commits

..

No commits in common. "9a3e3e9ca7259616189be1ebb25e122b9708c05b" and "662e32548233941c2914af28b0bcd2389d99cdb8" have entirely different histories.

3 changed files with 2 additions and 10 deletions

View File

@ -13,8 +13,8 @@ http {
}
server {
listen 80 http2;
listen [::]:80 http2;
listen 80;
listen [::]:80;
# INFO: Set this to your domain
server_name ${NEXTCLOUD_DOMAIN};

View File

@ -62,9 +62,6 @@ RUN install-php-extensions \
# Copy optimized php.ini-development and production
COPY ./php.ini-production /usr/local/etc/php/php.ini
# Copy optimized php-fpm.ini
COPY ./php-fpm.ini /usr/local/etc/php/php-fpm.d/zz-pm-tuning.ini
# Set the working directory
WORKDIR /var/www/html

View File

@ -1,5 +0,0 @@
pm = static
pm.max_children = 800
pm.start_servers = 200
pm.min_spare_servers = 200
pm.max_spare_servers = 600