質問編集履歴

3

わかりにくい文面を変更

2021/11/26 03:41

投稿

space_sss
space_sss

スコア81

test CHANGED
File without changes
test CHANGED
@@ -262,7 +262,7 @@
262
262
 
263
263
  とでる。
264
264
 
265
- これはおそらくdockerを切っても接続できるので、macの環境?
265
+ これはおそらくdockerのアプリケーション落としても接続できるので、macの環境?
266
266
 
267
267
 
268
268
 

2

hostsの設定を追加しました。

2021/11/26 03:41

投稿

space_sss
space_sss

スコア81

test CHANGED
File without changes
test CHANGED
@@ -228,6 +228,16 @@
228
228
 
229
229
  ```
230
230
 
231
+ **hosts**
232
+
233
+ ```
234
+
235
+ 127.0.0.1 local.test.com
236
+
237
+ ```
238
+
239
+
240
+
231
241
  の構成となっております。
232
242
 
233
243
 
@@ -248,7 +258,11 @@
248
258
 
249
259
  結果
250
260
 
251
- アクセスできない
261
+ It works!
262
+
263
+ とでる。
264
+
265
+ これはおそらくdockerを切っても接続できるので、macの環境?
252
266
 
253
267
 
254
268
 
@@ -256,7 +270,7 @@
256
270
 
257
271
  ServerNameを好きなドメイン名に変更した後になにか設定があるのか?
258
272
 
259
- hostsファイルの設定が必要?
273
+
260
274
 
261
275
 
262
276
 

1

質問が二つになっていたので1つの質問に絞りました。

2021/11/22 12:41

投稿

space_sss
space_sss

スコア81

test CHANGED
@@ -1 +1 @@
1
- DockerのDocumentRootとServerNameの設定
1
+ DockerのServerNameを変更し好きなドメイン名に変更しブラウザよりアクセスができるようにするには
test CHANGED
@@ -1,11 +1,13 @@
1
- DockerのDocumentRootとServerNameの設定についての質問です。
1
+ DockerのServerNameの設定についての質問です。
2
+
3
+
4
+
2
-
5
+ OS
6
+
3
-
7
+ mac(インテル)
4
8
 
5
9
  ### やりたいこと
6
10
 
7
- DocumentRootを/home/test/htmlに変更し
8
-
9
11
  ServerNameを好きなドメイン名に変更しブラウザよりアクセスができるようにする
10
12
 
11
13
 
@@ -42,10 +44,6 @@
42
44
 
43
45
  services:
44
46
 
45
- version: '3'
46
-
47
- services:
48
-
49
47
  php:
50
48
 
51
49
  build:
@@ -148,6 +146,16 @@
148
146
 
149
147
  ```
150
148
 
149
+ <Directory /home/test/html/>
150
+
151
+ Options Indexes FollowSymLinks
152
+
153
+ AllowOverride None
154
+
155
+ Require all granted
156
+
157
+ </Directory>
158
+
151
159
  <VirtualHost *:80>
152
160
 
153
161
  # The ServerName directive sets the request scheme, hostname and port that
@@ -164,7 +172,7 @@
164
172
 
165
173
  # However, you must set it for any further virtual host explicitly.
166
174
 
167
- #ServerName www.example.com
175
+ ServerName local.test.com
168
176
 
169
177
 
170
178
 
@@ -230,28 +238,26 @@
230
238
 
231
239
  結果
232
240
 
233
- Forbidden
241
+ アクセスできる
234
-
235
- You don't have permission to access this resource.
236
242
 
237
243
 
238
244
 
239
245
  ### やってみたこと2
240
246
 
241
- 000-default.confのServerNameをtest.com
247
+ local.test.comにアクセス。
248
+
242
-
249
+ 結果
250
+
243
- Forbidden
251
+ アクセスできない
244
-
245
- You don't have permission to access this resource.
246
-
247
-
248
252
 
249
253
 
250
254
 
251
255
  困っていること
252
256
 
253
- http://localhost:8000/アクセスすもアクセスができない。
257
+ ServerNameを好きなドメイン名変更した後になにか設定があのか?
254
-
258
+
255
- DocumentRootを/var/www/hrmlで配下にindex.htmlを置すると問題なくアクセスできる。
259
+ hostsファイルの定が必要?
260
+
261
+
256
262
 
257
263
  よろしくお願いいたします。