Skip to content

Commit 48cd27c

Browse files
committed
Upd site path
1 parent 7959d94 commit 48cd27c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
volumes:
1111
- ./php/php-fpm.conf:/usr/local/etc/php-fpm.conf
1212
- ./php/php.ini:/usr/local/etc/php/conf.d/php.ini
13-
- ./site:/var/www/site
13+
- ./site:/var/www/html
1414

1515
nginx:
1616
image: nginx:1.9.9
@@ -20,7 +20,7 @@ services:
2020
- php
2121
volumes:
2222
- ./nginx/conf.d:/etc/nginx/conf.d
23-
- ./site:/var/www/site
23+
- ./site:/var/www/html
2424

2525
mysql:
2626
image: mysql:5.7

nginx/conf.d/default.conf renamed to nginx/conf.d/dev.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
server {
22
listen 80 default_server;
33
server_name site.dev;
4-
root /var/www/site;
4+
root /var/www/html;
55
index index.php;
66

77
gzip on;

0 commit comments

Comments
 (0)