ソースを参照

Moved site data to dedicated directory

main
Simon Bowie 3年前
コミット
24c9e9d5f4
3個のファイルの変更3行の追加3行の削除
  1. +2
    -2
      docker-compose.yml
  2. +1
    -1
      nginx/default.conf
  3. +0
    -0
      site/public/index.php

+ 2
- 2
docker-compose.yml ファイルの表示

@@ -8,7 +8,7 @@ services:
ports:
- '9000:9000'
volumes:
- ./public:/var/www/html
- ./site:/var/www/html

nginx:
container_name: nginx
@@ -16,7 +16,7 @@ services:
ports:
- '8080:80'
volumes:
- ./public:/var/www/html
- ./site:/var/www/html
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
depends_on:
- php

+ 1
- 1
nginx/default.conf ファイルの表示

@@ -3,7 +3,7 @@ server {
listen 80;
index index.php;
server_name localhost;
root /var/www/html;
root /var/www/html/public;
error_log /var/log/nginx/project_error.log;
access_log /var/log/nginx/project_access.log;


public/index.php → site/public/index.php ファイルの表示


読み込み中…
キャンセル
保存