feat(dev-env): add a docker-compose and nginx sample config
This commit is contained in:
parent
14bdd40cdb
commit
a1a702b386
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: "3"
|
||||
|
||||
services:
|
||||
web:
|
||||
image: nginx:latest
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- ./www:/var/www/html
|
||||
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
||||
php-fpm:
|
||||
image: php:8-fpm
|
||||
volumes:
|
||||
- ./www:/var/www/html
|
16
nginx.conf
Normal file
16
nginx.conf
Normal file
|
@ -0,0 +1,16 @@
|
|||
server {
|
||||
index index.php;
|
||||
# server_name phpfpm.local;
|
||||
# error_log /var/log/nginx/error.log;
|
||||
# access_log /var/log/nginx/access.log;
|
||||
root /var/www/html;
|
||||
try_files $uri $uri/ /index.php;
|
||||
location ~ \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass php-fpm:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user