We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7959d94 commit 48cd27cCopy full SHA for 48cd27c
docker-compose.yml
@@ -10,7 +10,7 @@ services:
10
volumes:
11
- ./php/php-fpm.conf:/usr/local/etc/php-fpm.conf
12
- ./php/php.ini:/usr/local/etc/php/conf.d/php.ini
13
- - ./site:/var/www/site
+ - ./site:/var/www/html
14
15
nginx:
16
image: nginx:1.9.9
@@ -20,7 +20,7 @@ services:
20
- php
21
22
- ./nginx/conf.d:/etc/nginx/conf.d
23
24
25
mysql:
26
image: mysql:5.7
nginx/conf.d/default.conf renamed to nginx/conf.d/dev.conf
@@ -1,7 +1,7 @@
1
server {
2
listen 80 default_server;
3
server_name site.dev;
4
- root /var/www/site;
+ root /var/www/html;
5
index index.php;
6
7
gzip on;
0 commit comments