はじめに
恥ずかしながら、原因の切り分けがほとんどできておらず、行き詰ってしまっております。
お手数ですが、お知恵をお貸しください。
事象
外部からWebサーバ(nginx)にアクセスできない
アクセスログに出力がなかったので、そもそもアクセスができていない?
※firewallは停止しています
# systemctl status firewalld.service ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled) Active: inactive (dead) Docs: man:firewalld(1)
※nginxは正常に動いています
# systemctl status nginx ● nginx.service - nginx - high performance web server Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled) Active: active (running) since 日 2019-09-29 22:11:11 JST; 36min ago Docs: http://nginx.org/en/docs/
環境
・・・ | バージョン | 備考 |
---|---|---|
OS | CentOS7.6 | さくらVPS上に構築 |
nginx | 1.16.1 | - |
※関係があるかわかりませんが、railsがインストールしてあります。
現在は停止していますが、最終的にnginx→railsのような構成にしようとしています。
設定ファイル
nginx.conf
インストール時のままです。(ここに記載するために、空行を削っています。)
user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf; }
conf.d/default.conf
server { listen 80; # ★ここを自身のホスト名に変更しています。 server_name sample.co.jp; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html; index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ .php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ .php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /.ht { # deny all; #} }
試したこと
ホスト名の確認
pingも通り、名前解決もできていることから、ドメイン回りの問題ないと考えています。
$ ping sample.co.jp sample.co.jp [XXX.XXX.XXX.XXX]に ping を送信しています 32 バイトのデータ: XXX.XXX.XXX.XXX からの応答: バイト数 =32 時間 =5ms TTL=53 XXX.XXX.XXX.XXX からの応答: バイト数 =32 時間 =5ms TTL=53 XXX.XXX.XXX.XXX からの応答: バイト数 =32 時間 =5ms TTL=53 XXX.XXX.XXX.XXX からの応答: バイト数 =32 時間 =5ms TTL=53 XXX.XXX.XXX.XXX の ping 統計: パケット数: 送信 = 4、受信 = 4、損失 = 0 (0% の損失)、 ラウンド トリップの概算時間 (ミリ秒): 最小 = 5ms、最大 = 5ms、平均 = 5ms
別のサーバからcURLにて確認
$ curl -I http://sample.co.jp curl: (7) Failed connect to sample.co.jp:80; 接続がタイムアウトしました
※WindowsからもChromeにてアクセスしましたが、「ERR_CONNECTION_TIMED_OUT」になってしまいました。
自分のサーバからcURLにて確認
$ curl -I http://sample.co.jp HTTP/1.1 200 OK Server: nginx/1.16.1 Date: Sun, 29 Sep 2019 13:34:06 GMT Content-Type: text/html Content-Length: 612 Last-Modified: Tue, 13 Aug 2019 15:04:31 GMT Connection: keep-alive ETag: "5d52d17f-264" Accept-Ranges: bytes
アクセスログの確認
自サーバからのアクセスしか記録されていませんでした。
# cat /var/log/nginx/access.log XXX.XXX.XXX.XXX - - [29/Sep/2019:22:17:39 +0900] "GET / HTTP/1.1" 200 612 "-" "Wget/1.14 (linux-gnu)" "-" XXX.XXX.XXX.XXX - - [29/Sep/2019:22:34:06 +0900] "HEAD / HTTP/1.1" 200 0 "-" "curl/7.29.0" "-"
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/30 00:38
2019/09/30 01:35