You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
xiaoqidun 32bb880f63
continuous-integration/drone/push Build is passing Details
fix(升级扩展): 升级扩展
1 year ago
.drone.yml feat(升级版本): 升级版本 2 years ago
.gitignore feat(初始项目): 初始项目 2 years ago
Dockerfile fix(升级扩展): 升级扩展 1 year ago
LICENSE Initial commit 2 years ago
README.md docs(更新文档): 更新文档 2 years ago

README.md

pfenv

php-fpm environment

docker

拉取镜像

docker pull hkccr.ccs.tencentyun.com/xiaoqidun/pfenv:latest

docker-compose

version: '3.8'
services: 
    php-fpm:
        image: 'hkccr.ccs.tencentyun.com/xiaoqidun/pfenv'
        restart: 'always'
        container_name: 'php-fpm'
        volumes:
            - '/www:/www'

nginx server

server {
    listen 80;
    listen [::]:80;

    server_name aite.xyz;

    root /www/aite.xyz;
    index index.htm index.html index.php default.htm default.html default.php;

    autoindex on;
    autoindex_localtime on;
    autoindex_exact_size on;

    location ~ \.php$ {
        fastcgi_pass php-fpm:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}