Skip to content

Commit c46c38c

Browse files
committed
add php 8.3
1 parent fb069d6 commit c46c38c

13 files changed

+685
-0
lines changed

8.3/Dockerfile

+156
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
FROM alpine:3.19
2+
3+
LABEL Maintainer="chuoke"
4+
5+
# mirrors.aliyun.com
6+
# mirrors.tuna.tsinghua.edu.cn
7+
ARG ALPINE_APK_REPO=mirrors.aliyun.com
8+
ENV ALPINE_APK_REPO=${ALPINE_APK_REPO}
9+
10+
# RUN apk upgrade
11+
# RUN apk add -X https://dl-cdn.alpinelinux.org/alpine/v3.16/main -u alpine-keys
12+
13+
# swoole 在 testing 库
14+
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories
15+
16+
RUN if [ ${ALPINE_APK_REPO} ]; then \
17+
sed -i "s/dl-cdn.alpinelinux.org/${ALPINE_APK_REPO}/g" /etc/apk/repositories; \
18+
fi
19+
20+
# RUN apk update && \
21+
# apk upgrade --available && \
22+
RUN apk add --no-cache openssl bash curl ca-certificates shadow \
23+
nodejs
24+
25+
## Install about PHP
26+
27+
## Many extensions are included in the base package,
28+
## but in order to ensure that the required extensions must exist,
29+
## all of them are mandatory installation
30+
31+
RUN apk add --no-cache \
32+
php83 \
33+
php83-common \
34+
php83-fpm \
35+
# Laravel Requirements
36+
php83-bcmath \
37+
php83-ctype \
38+
php83-fileinfo \
39+
php83-json \
40+
php83-mbstring \
41+
php83-openssl \
42+
php83-pdo \
43+
php83-tokenizer \
44+
php83-xml \
45+
# Base Requirements
46+
php83-curl \
47+
php83-dom \
48+
php83-gd \
49+
php83-opcache \
50+
php83-xmlwriter \
51+
php83-simplexml \
52+
php83-posix \
53+
php83-opcache \
54+
# Other Requirements
55+
php83-zlib \
56+
php83-zip \
57+
php83-sodium \
58+
php83-phar \
59+
php83-exif \
60+
php83-iconv \
61+
php83-intl \
62+
php83-session \
63+
php83-xmlreader \
64+
php83-ftp \
65+
php83-sockets \
66+
php83-calendar \
67+
php83-mysqli \
68+
php83-pdo_mysql \
69+
php83-pdo_sqlite \
70+
php83-sqlite3 \
71+
php83-pcntl \
72+
php83-gettext \
73+
php83-imap \
74+
# pecl extensions
75+
php83-pecl-apcu \
76+
php83-pecl-redis \
77+
# php83-pecl-imagick \ 还没有包
78+
# php83-pecl-xdebug \ Can't coexist with Swoole,see Swoole's doc
79+
php83-pecl-swoole
80+
81+
# Configure PHP-FPM
82+
COPY php-fpm.conf /etc/php83/php-fpm.d/www.conf
83+
COPY php.ini /etc/php83/conf.d/custom.ini
84+
85+
RUN rm -f /usr/bin/php && ln -s /usr/bin/php83 /usr/bin/php && \
86+
ln -s /usr/sbin/php-fpm82 /usr/sbin/php-fpm
87+
88+
# Install composer
89+
# RUN apk add composer # It depent php version is 8.1
90+
ENV COMPOSER_HOME /composer
91+
ENV PATH ./vendor/bin:/composer/vendor/bin:$PATH
92+
ENV COMPOSER_ALLOW_SUPERUSER 1
93+
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \
94+
php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \
95+
php -r "unlink('composer-setup.php');"
96+
97+
# Config Composer packagist repo
98+
# ARG COMPOSER_REPO_PACKAGIST=https://mirrors.aliyun.com/composer/
99+
ARG COMPOSER_REPO_PACKAGIST=https://mirrors.tencent.com/composer/
100+
ENV COMPOSER_REPO_PACKAGIST=${COMPOSER_REPO_PACKAGIST}
101+
RUN if [ ${COMPOSER_REPO_PACKAGIST} ]; then \
102+
composer config -g repo.packagist composer ${COMPOSER_REPO_PACKAGIST} \
103+
;fi
104+
105+
106+
# Install about nginx
107+
RUN apk --no-cache add nginx && \
108+
if [ -f '/etc/nginx/conf.d/default.conf' ]; then \
109+
rm /etc/nginx/conf.d/default.conf \
110+
;fi
111+
112+
# Configure nginx
113+
COPY nginx.conf /etc/nginx/nginx.conf
114+
COPY nginx-server-temps /etc/nginx/server-temps
115+
116+
# Install supervisor
117+
RUN apk --no-cache add supervisor
118+
# RUN apk add py3-setuptools py3-pip && pip install supervisor
119+
# Configure supervisord
120+
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
121+
122+
# Clean
123+
RUN rm -rf /var/cache/apk/*
124+
125+
# ensure www-data user exists
126+
RUN set -x ; \
127+
addgroup -g 82 -S www-data ; \
128+
adduser -u 82 -D -S -G www-data www-data && exit 0 ; exit 1
129+
130+
ARG PUID=1000
131+
ENV PUID ${PUID}
132+
ARG PGID=1000
133+
ENV PGID ${PGID}
134+
135+
RUN groupmod -o -g ${PGID} www-data && \
136+
usermod -o -u ${PUID} -g www-data www-data
137+
138+
RUN groupmod -o -g ${PGID} nginx && \
139+
usermod -o -u ${PUID} -g nginx nginx
140+
141+
COPY start-container /usr/local/bin/start-container
142+
RUN chmod +x /usr/local/bin/start-container
143+
144+
# Setup document root
145+
RUN mkdir -p /var/www/
146+
RUN chown -R www-data:www-data /var/www/
147+
148+
# Add application
149+
WORKDIR /var/www/
150+
151+
# Expose the port nginx is reachable on
152+
EXPOSE 80
153+
154+
# CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
155+
156+
ENTRYPOINT ["start-container"]

8.3/config-examples/supervisord.conf

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[program:php-fpm]
2+
command=php-fpm -F
3+
stdout_logfile=/dev/stdout
4+
stdout_logfile_maxbytes=0
5+
stderr_logfile=/dev/stderr
6+
stderr_logfile_maxbytes=0
7+
autorestart=true
8+
startretries=3
9+
10+
[program:laravel-scheduler]
11+
process_name=%(program_name)s_%(process_num)02d
12+
command=/bin/sh -c "while [ true ]; do (php /var/www/site/artisan schedule:run --verbose --no-interaction &); sleep 60; done"
13+
autostart=true
14+
autorestart=true
15+
numprocs=1
16+
user=www-data
17+
redirect_stderr=true
18+
19+
[program:laravel-worker]
20+
process_name=%(program_name)s_%(process_num)02d
21+
command=php /var/www/site/artisan queue:work --sleep=3 --tries=3 --max-time=3600
22+
autostart=true
23+
autorestart=true
24+
stopasgroup=true
25+
killasgroup=true
26+
user=www-data
27+
numprocs=4
28+
redirect_stderr=true
29+
stdout_logfile=/var/www/site/worker.log
30+
stopwaitsecs=3600
31+
32+
[program:laravel-octane]
33+
# roadrunner
34+
# command=/usr/bin/php -d variables_order=EGPCS /var/www/site/artisan octane:start --server=roadrunner --host=0.0.0.0 --rpc-port=6001 --port=8000
35+
# swoole
36+
# command=/usr/bin/php -d variables_order=EGPCS /var/www/site/artisan octane:start --server=swoole --host=0.0.0.0 --port=8000
37+
#
38+
command=/usr/bin/php -d variables_order=EGPCS /var/www/site/artisan octane:start --host=0.0.0.0 --port=8000 --max-requests=250
39+
user=www-data
40+
stdout_logfile=/dev/stdout
41+
stdout_logfile_maxbytes=0
42+
stderr_logfile=/dev/stderr
43+
stderr_logfile_maxbytes=0
44+
45+
[program:nginx]
46+
command=nginx
47+
stdout_logfile=/dev/stdout
48+
stdout_logfile_maxbytes=0
49+
stderr_logfile=/dev/stderr
50+
stderr_logfile_maxbytes=0
51+
autorestart=true
52+
startretries=3
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# @see https://laravel.com/docs/10.x/octane#serving-your-application-via-nginx
2+
3+
map $http_upgrade $connection_upgrade {
4+
default upgrade;
5+
'' close;
6+
}
7+
8+
server {
9+
listen 80;
10+
listen [::]:80;
11+
server_name domain.com;
12+
server_tokens off;
13+
root ${NGINX_SERVER_ROOT};
14+
15+
index index.php;
16+
17+
charset utf-8;
18+
19+
location /index.php {
20+
try_files /not_exists @octane;
21+
}
22+
23+
location / {
24+
try_files $uri $uri/ @octane;
25+
}
26+
27+
location = /favicon.ico { access_log off; log_not_found off; }
28+
location = /robots.txt { access_log off; log_not_found off; }
29+
30+
access_log off;
31+
error_log /var/log/nginx/domain.com-error.log error;
32+
33+
error_page 404 /index.php;
34+
35+
location @octane {
36+
set $suffix "";
37+
38+
if ($uri = /index.php) {
39+
set $suffix ?$query_string;
40+
}
41+
42+
proxy_http_version 1.1;
43+
proxy_set_header Host $http_host;
44+
proxy_set_header Scheme $scheme;
45+
proxy_set_header SERVER_PORT $server_port;
46+
proxy_set_header REMOTE_ADDR $remote_addr;
47+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
48+
proxy_set_header Upgrade $http_upgrade;
49+
proxy_set_header Connection $connection_upgrade;
50+
51+
proxy_pass http://127.0.0.1:8000$suffix;
52+
}
53+
}

8.3/nginx-server-temps/laravel.conf

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
server {
2+
3+
listen 80;
4+
# listen [::]:80;
5+
6+
# For https
7+
# listen 443 ssl;
8+
# listen [::]:443 ssl ipv6only=on;
9+
# ssl_certificate /etc/nginx/ssl/default.crt;
10+
# ssl_certificate_key /etc/nginx/ssl/default.key;
11+
12+
# server_name example.test;
13+
root ${NGINX_SERVER_ROOT};
14+
index index.php index.html index.htm;
15+
16+
location / {
17+
try_files $uri $uri/ /index.php$is_args$args;
18+
}
19+
20+
location ~ \.php$ {
21+
try_files $uri /index.php =404;
22+
# fastcgi_pass php-upstream;
23+
# fastcgi_pass 127.0.0.1:9000;
24+
fastcgi_pass unix:/run/php-fpm.sock;
25+
fastcgi_index index.php;
26+
fastcgi_buffers 16 16k;
27+
fastcgi_buffer_size 32k;
28+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
29+
#fixes timeouts
30+
fastcgi_read_timeout 600;
31+
include fastcgi_params;
32+
}
33+
34+
location ~ /\.ht {
35+
deny all;
36+
}
37+
38+
location /.well-known/acme-challenge/ {
39+
root /var/www/letsencrypt/;
40+
log_not_found off;
41+
}
42+
43+
error_log /var/log/nginx/error.log;
44+
access_log /var/log/nginx/access.log;
45+
}
46+

8.3/nginx-server-temps/thinkphp.conf

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
server {
2+
3+
listen 80;
4+
# listen [::]:80;
5+
6+
# For https
7+
# listen 443 ssl;
8+
# listen [::]:443 ssl ipv6only=on;
9+
# ssl_certificate /etc/nginx/ssl/default.crt;
10+
# ssl_certificate_key /etc/nginx/ssl/default.key;
11+
12+
# server_name example.test;
13+
root ${NGINX_SERVER_ROOT};
14+
index index.php index.html index.htm;
15+
16+
location / {
17+
# try_files $uri $uri/ /index.php$is_args$args;
18+
if (!-e $request_filename) {
19+
rewrite ^/(.*)$ /index.php?s=$1 last;
20+
break;
21+
}
22+
}
23+
24+
location ~ \.php$ {
25+
try_files $uri /index.php =404;
26+
# fastcgi_pass php-upstream;
27+
# fastcgi_pass 127.0.0.1:9000;
28+
fastcgi_pass unix:/run/php-fpm.sock;
29+
fastcgi_index index.php;
30+
fastcgi_buffers 16 16k;
31+
fastcgi_buffer_size 32k;
32+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
33+
#fixes timeouts
34+
fastcgi_read_timeout 600;
35+
include fastcgi_params;
36+
}
37+
38+
location ~ /\.ht {
39+
deny all;
40+
}
41+
42+
location /.well-known/acme-challenge/ {
43+
root /var/www/letsencrypt/;
44+
log_not_found off;
45+
}
46+
47+
error_log /var/log/nginx/error.log;
48+
access_log /var/log/nginx/access.log;
49+
}
50+

0 commit comments

Comments
 (0)