fix files

This commit is contained in:
Sergey Paramoshkin 2025-01-16 17:57:18 +03:00
parent 9ad05be425
commit 983c886cc8
2 changed files with 4 additions and 4 deletions

View File

@ -64,8 +64,8 @@ WORKDIR /usr/src/signer/
COPY ./backend /usr/src/signer COPY ./backend /usr/src/signer
COPY ./docker/php/www.conf /etc/php/8.3/fpm/pool.d/www.conf COPY ./docker/php/www.conf /etc/php/8.3/fpm/pool.d/www.conf
COPY ./docker/php/nginx/default.conf /etc/nginx/sites-enabled/default COPY ./docker/nginx/default.conf /etc/nginx/sites-enabled/default
COPY ./docker/php/nginx.conf /etc/nginx/nginx.conf COPY ./docker/nginx/nginx.conf /etc/nginx/nginx.conf
RUN mkdir -p /run/php RUN mkdir -p /run/php
# RUN curl curl https://frankenphp.dev/install.sh | sh # RUN curl curl https://frankenphp.dev/install.sh | sh
# RUN mv /usr/src/signer/frankenphp /usr/local/bin/ # RUN mv /usr/src/signer/frankenphp /usr/local/bin/

View File

@ -1,9 +1,10 @@
user www-data; user www-data;
worker_processes 4; worker_processes 4;
daemon off;
pid /run/nginx.pid; pid /run/nginx.pid;
events { events {
worker_connections 2048; worker_connections 2048;
multi_accept on; multi_accept on;
use epoll; use epoll;
} }
@ -34,4 +35,3 @@ http {
fastcgi_buffer_size 32k; fastcgi_buffer_size 32k;
} }
daemon off;