まず第一に、nginxは単独でデプロイされるわけではないので、最初に起動する必要があります
docker start nginx
nginxが出力されていることがわかりました。しかし、docker ps は、nginx がまだ起動に失敗していることを発見しました
そこで、ログを確認する準備をしました
docker logs -f nginx
大量のエラーが報告され、そしてログがいつ記録されたのか分かりませんでした。解決後、設定ファイルが空の理由はイベントモジュールが見つからなかったからだと推測しました。
そこで、まずコンテナの情報を確認します。 nginx
docker inspect nginx
マウント情報を見つけて、設定ファイルを確認すると、/usr/nginx/conf に設定ファイルがないことがわかります。この時点で問題を発見しましたが、運用保守の学生は問題を問い合わせる際に空の nginx.conf を作成し、私はその設定ファイルを開きませんでした。設定ファイルを調べたところ、それが空であることがわかり、設定ファイルを変更しました。
最初にデフォルトの nginx.conf 設定を見つけました
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include 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 logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root 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 { # 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 # 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; } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on;
次に、docker start nginx を実行して、開始できることを確認しました
次に正しい jira 設定を追加します
location / { proxy_pass http://192.168.1.111:8080; proxy_redirect off; proxy_set_header Host $host:$server_port; ##重点在$server_port proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_max_temp_file_size 0; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_hide_header Vary; proxy_set_header Accept-Encoding ''; proxy_set_header Referer $http_referer; proxy_set_header Cookie $http_cookie; }
コンテナに入って設定ファイルに問題がないか確認します
docker exec -it 容器id /bin/bash
nginx path search find / -name nginx
./nginx/sbin/nginx -t
検出で 1 つ欠落が見つかりました}
:set nu
特定の行を見つけて修正してください
ctrl +D // 退出容器
nginx を開始
docker restart nginx
以上がnginxの起動失敗を解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。