Compare commits

..

2 Commits

Author SHA1 Message Date
9f308af6b0 #tradewind:add gitignore 2022-11-16 15:23:27 +08:00
c29903b394 #tradewind:update 2022-11-16 15:21:20 +08:00
3 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
*.iml
log
.env
.DS_Store

View File

@ -8,7 +8,7 @@ server {
}
location ~ \.php$ {
fastcgi_pass php7.4:9000;
fastcgi_pass php74:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

View File

@ -27,9 +27,11 @@ RUN apt-get update && apt-get install -y \
&& pecl install \
redis \
xdebug \
mongodb \
&& docker-php-ext-enable \
redis \
xdebug \
mongodb \
&& apt-get clean \
&& apt-get autoclean