質問編集履歴

2

修正

2017/12/24 16:33

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -32,9 +32,13 @@
32
32
 
33
33
  apache2.confで下記エラーが出ました。
34
34
 
35
+ ※8080はdefault側のポートなので書かず、コンテナの80ポートで設定しました。
36
+
35
37
 
36
38
 
37
39
  ```
40
+
41
+ NameVirtualHost *:80
38
42
 
39
43
  <VirtualHost *:80>
40
44
 
@@ -52,6 +56,8 @@
52
56
 
53
57
  AH00548: NameVirtualHost has no effect and will be removed in the next release /etc/apache2/apache2.conf:178
54
58
 
55
- AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.〇〇.〇.2. Set the 'ServerName' directive globally to suppress this message
59
+ AH00558: apache2: Could not reliably determine the server's fully qualified domain name,
60
+
61
+ using 172.〇〇.〇.2. Set the 'ServerName' directive globally to suppress this message
56
62
 
57
63
  ```

1

追記

2017/12/24 16:33

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -25,3 +25,33 @@
25
25
  ###補足情報(言語/FW/ツール等のバージョンなど)
26
26
 
27
27
  ubuntu, Laravel5
28
+
29
+
30
+
31
+ ###追記
32
+
33
+ apache2.confで下記エラーが出ました。
34
+
35
+
36
+
37
+ ```
38
+
39
+ <VirtualHost *:80>
40
+
41
+ DocumentRoot /www/example2
42
+
43
+ ServerName www.example.org
44
+
45
+ </VirtualHost>
46
+
47
+ ```
48
+
49
+
50
+
51
+ ```
52
+
53
+ AH00548: NameVirtualHost has no effect and will be removed in the next release /etc/apache2/apache2.conf:178
54
+
55
+ AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.〇〇.〇.2. Set the 'ServerName' directive globally to suppress this message
56
+
57
+ ```