質問編集履歴

2

ご指摘にあったconfを記載しました

2017/11/18 06:28

投稿

stay
stay

スコア24

test CHANGED
File without changes
test CHANGED
@@ -191,3 +191,77 @@
191
191
  external: true
192
192
 
193
193
  ```
194
+
195
+
196
+
197
+ 追記 2017/11/18
198
+
199
+ 前述のdocker-compose.ymlファイルにあるwebのconfファイルを確認しました
200
+
201
+
202
+
203
+ ```
204
+
205
+ /etc/apache2/sites-enabled
206
+
207
+
208
+
209
+ <VirtualHost *:80>
210
+
211
+ # The ServerName directive sets the request scheme, hostname and port that
212
+
213
+ # the server uses to identify itself. This is used when creating
214
+
215
+ # redirection URLs. In the context of virtual hosts, the ServerName
216
+
217
+ # specifies what hostname must appear in the request's Host: header to
218
+
219
+ # match this virtual host. For the default virtual host (this file) this
220
+
221
+ # value is not decisive as it is used as a last resort host regardless.
222
+
223
+ # However, you must set it for any further virtual host explicitly.
224
+
225
+ #ServerName www.example.com
226
+
227
+
228
+
229
+ ServerAdmin webmaster@localhost
230
+
231
+ DocumentRoot /var/www/html
232
+
233
+
234
+
235
+ # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
236
+
237
+ # error, crit, alert, emerg.
238
+
239
+ # It is also possible to configure the loglevel for particular
240
+
241
+ # modules, e.g.
242
+
243
+ #LogLevel info ssl:warn
244
+
245
+
246
+
247
+ ErrorLog ${APACHE_LOG_DIR}/error.log
248
+
249
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
250
+
251
+
252
+
253
+ # For most configuration files from conf-available/, which are
254
+
255
+ # enabled or disabled at a global level, it is possible to
256
+
257
+ # include a line for only one particular virtual host. For example the
258
+
259
+ # following line enables the CGI configuration for this host only
260
+
261
+ # after it has been globally disabled with "a2disconf".
262
+
263
+ #Include conf-available/serve-cgi-bin.conf
264
+
265
+ </VirtualHost>
266
+
267
+ ```

1

確認方法がわかりづらかったので修正

2017/11/18 06:28

投稿

stay
stay

スコア24

test CHANGED
File without changes
test CHANGED
@@ -4,9 +4,11 @@
4
4
 
5
5
 
6
6
 
7
- 下記サイトで外部からポート開放しいるか確認しておりすが、http(80)は大丈夫が、https(443)は確認ができませんでした。
7
+ ブラウザにて確認しましたところ、http(80)は正常したが、https(443)は接続できませんでした。
8
8
 
9
+ そこで、ポート開放が正常に行われているか確認するために、外部サイトからポート確認しましたがそちらでもhttps(443)はアクセスできませんでした。
10
+
9
- https://www.cman.jp/network/support/port.html
11
+ 確認したサイト:https://www.cman.jp/network/support/port.html
10
12
 
11
13
 
12
14