ports: | ports: | ||||
- '9000:9000' | - '9000:9000' | ||||
volumes: | volumes: | ||||
- ./public:/var/www/html | |||||
- ./site:/var/www/html | |||||
nginx: | nginx: | ||||
container_name: nginx | container_name: nginx | ||||
ports: | ports: | ||||
- '8080:80' | - '8080:80' | ||||
volumes: | volumes: | ||||
- ./public:/var/www/html | |||||
- ./site:/var/www/html | |||||
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf | - ./nginx/default.conf:/etc/nginx/conf.d/default.conf | ||||
depends_on: | depends_on: | ||||
- php | - php |
listen 80; | listen 80; | ||||
index index.php; | index index.php; | ||||
server_name localhost; | server_name localhost; | ||||
root /var/www/html; | |||||
root /var/www/html/public; | |||||
error_log /var/log/nginx/project_error.log; | error_log /var/log/nginx/project_error.log; | ||||
access_log /var/log/nginx/project_access.log; | access_log /var/log/nginx/project_access.log; | ||||