fix files
This commit is contained in:
parent
9ad05be425
commit
983c886cc8
|
|
@ -64,8 +64,8 @@ WORKDIR /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/nginx/default.conf /etc/nginx/sites-enabled/default
|
||||
COPY ./docker/php/nginx.conf /etc/nginx/nginx.conf
|
||||
COPY ./docker/nginx/default.conf /etc/nginx/sites-enabled/default
|
||||
COPY ./docker/nginx/nginx.conf /etc/nginx/nginx.conf
|
||||
RUN mkdir -p /run/php
|
||||
# RUN curl curl https://frankenphp.dev/install.sh | sh
|
||||
# RUN mv /usr/src/signer/frankenphp /usr/local/bin/
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
user www-data;
|
||||
worker_processes 4;
|
||||
daemon off;
|
||||
pid /run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 2048;
|
||||
worker_connections 2048;
|
||||
multi_accept on;
|
||||
use epoll;
|
||||
}
|
||||
|
|
@ -34,4 +35,3 @@ http {
|
|||
fastcgi_buffer_size 32k;
|
||||
}
|
||||
|
||||
daemon off;
|
||||
|
|
|
|||
Loading…
Reference in New Issue