NanFeng778 2023-05-05 21:08 采纳率: 50%
浏览 15

nginx运行监听端口重复的错误

nginx运行问题,第一次部署博客
nginx.conf里配置为

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;

    client_max_body_size     50m;
    client_body_buffer_size  10m;       
    client_header_timeout    1m;
    client_body_timeout      1m;

    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_comp_level  4;
    gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
    gzip_vary on;
    
server {

        listen  443 ssl;
        server_name  www.lovewei.site;

        ssl on;
        ssl_certificate /etc/nginx/cert/www.lovewei.site_bundle.pem; 
       ssl_certificate_key /etc/nginx/cert/www.lovewei.site.key; 
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

       location / {
            root   /usr/local/vue/blog;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html;
        }
        
        location ^~ /api/ {
            proxy_pass http://47.120.5.129:8080/;
            proxy_set_header   Host             $host;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        }
    }

server {

        listen  443 ssl;
        server_name admin.lovewei.site;

        ssl on;
        ssl_certificate /etc/nginx/cert/admin.lovewei.site_bundle.pem; 
        ssl_certificate_key /etc/nginx/cert/admin.lovewei.site.key; 
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

       location / {
            root   /usr/local/vue/admin;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html;
        }
        
        location ^~ /api/ {
            proxy_pass http://47.120.5.129:8080/;
            proxy_set_header   Host             $host;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        }
    }

server {
        listen       80;
        server_name  www.lovewei.site;
        rewrite ^(.*)$    https://$host$1    permanent;
        
    }
    
server {
        listen       80;
        server_name  admin.lovewei.site;
        rewrite ^(.*)$    https://$host$1    permanent;
        
    }    
}

运行日志为:

[root@nanfeng778 nginx]# docker logs 0d2c7017c2d6
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:35:05 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up

2023/05/05 12:39:06 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:39:07 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:39:07 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:39:08 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:39:09 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
2023/05/05 12:39:11 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: Configuration complete; ready for start up
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:39:14 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:39:21 [emerg] 1#1: a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
nginx: [emerg] a duplicate listen 0.0.0.0:443 in /etc/nginx/nginx.conf:28
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:42:31 [warn] 1#1: the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:28
nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:28
2023/05/05 12:42:31 [warn] 1#1: the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:56
nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:56
58.212.90.117 - - [05/May/2023:12:42:39 +0000] "GET / HTTP/1.1" 200 968 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:40 +0000] "GET /js/chunk-vendors.a0c03621.js HTTP/1.1" 200 194337 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:40 +0000] "GET /css/app.ca35e04c.css HTTP/1.1" 200 13930 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:40 +0000] "GET /css/chunk-vendors.04a6aa65.css HTTP/1.1" 200 50330 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:40 +0000] "GET /js/app.307d8b6d.js HTTP/1.1" 200 76381 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api HTTP/1.1" 301 169 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET / HTTP/1.1" 200 968 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "POST /api/report HTTP/1.1" 200 74 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/photos/albums HTTP/1.1" 200 72 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /img/default-cover.dbfd0904.jpg HTTP/1.1" 200 42237 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /js/506.09354563.js HTTP/1.1" 200 4571 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /css/133.677a476a.css HTTP/1.1" 200 671 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/ HTTP/1.1" 200 1217 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /js/812.a1fe6aec.js HTTP/1.1" 200 35600 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /js/439.9bedd0ae.js HTTP/1.1" 200 2657 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /js/133.a7a9f70d.js HTTP/1.1" 200 3333 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/tags/topTen HTTP/1.1" 200 110 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/categories/all HTTP/1.1" 200 123 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/articles/topAndFeatured HTTP/1.1" 200 923 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/comments/topSix HTTP/1.1" 200 72 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:42 +0000] "GET /api/articles/all?current=1&size=12 HTTP/1.1" 200 910 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:42:44 +0000] "GET /favicon.ico HTTP/1.1" 200 270398 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
101.89.43.238 - - [05/May/2023:12:43:03 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
101.89.43.238 - - [05/May/2023:12:43:57 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
61.241.55.180 - - [05/May/2023:12:44:39 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
58.212.90.117 - - [05/May/2023:12:44:39 +0000] "GET / HTTP/1.1" 200 968 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:39 +0000] "GET /css/chunk-vendors.04a6aa65.css HTTP/1.1" 200 50330 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /css/app.ca35e04c.css HTTP/1.1" 200 13930 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api HTTP/1.1" 301 169 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/photos/albums HTTP/1.1" 200 72 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /css/133.677a476a.css HTTP/1.1" 200 671 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "POST /api/report HTTP/1.1" 200 74 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET / HTTP/1.1" 200 968 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/ HTTP/1.1" 200 1217 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /js/506.09354563.js HTTP/1.1" 200 4571 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /js/812.a1fe6aec.js HTTP/1.1" 200 35600 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /js/439.9bedd0ae.js HTTP/1.1" 200 2657 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /js/133.a7a9f70d.js HTTP/1.1" 200 3333 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/comments/topSix HTTP/1.1" 200 72 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/categories/all HTTP/1.1" 200 123 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/tags/topTen HTTP/1.1" 200 110 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/articles/topAndFeatured HTTP/1.1" 200 923 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /api/articles/all?current=1&size=12 HTTP/1.1" 200 910 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:44:40 +0000] "GET /favicon.ico HTTP/1.1" 200 270398 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET / HTTP/1.1" 200 968 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET /css/chunk-vendors.04a6aa65.css HTTP/1.1" 200 50330 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET /css/app.ca35e04c.css HTTP/1.1" 200 13930 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET /api HTTP/1.1" 301 169 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "POST /api/report HTTP/1.1" 200 74 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET /css/133.677a476a.css HTTP/1.1" 200 671 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET /api/photos/albums HTTP/1.1" 200 72 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:18 +0000] "GET / HTTP/1.1" 200 968 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /js/812.a1fe6aec.js HTTP/1.1" 200 35600 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /js/439.9bedd0ae.js HTTP/1.1" 200 2657 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /js/133.a7a9f70d.js HTTP/1.1" 200 3333 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /js/506.09354563.js HTTP/1.1" 200 4571 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /api/ HTTP/1.1" 200 1217 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /api/comments/topSix HTTP/1.1" 200 72 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /api/articles/topAndFeatured HTTP/1.1" 200 923 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /api/categories/all HTTP/1.1" 200 123 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /api/tags/topTen HTTP/1.1" 200 110 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /api/articles/all?current=1&size=12 HTTP/1.1" 200 910 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
58.212.90.117 - - [05/May/2023:12:47:19 +0000] "GET /favicon.ico HTTP/1.1" 200 270398 "https://47.120.5.129/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
111.30.182.95 - - [05/May/2023:12:47:26 +0000] "GET / HTTP/1.1" 301 169 "-" "DNSPod-Monitor/2.0"
101.89.45.22 - - [05/May/2023:12:49:03 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
101.89.43.238 - - [05/May/2023:12:49:57 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
61.241.55.180 - - [05/May/2023:12:50:39 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
61.241.55.180 - - [05/May/2023:12:51:33 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
111.30.182.95 - - [05/May/2023:12:53:26 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
111.30.182.95 - - [05/May/2023:12:54:21 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
61.241.55.180 - - [05/May/2023:12:56:39 +0000] "GET / HTTP/1.1" 301 169 "-" "DNSPod-Monitor/2.0"
61.241.55.230 - - [05/May/2023:12:57:33 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
111.30.182.95 - - [05/May/2023:12:59:26 +0000] "GET / HTTP/1.1" 301 0 "-" "DNSPod-Monitor/2.0"
/docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
/docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: IPv6 listen already enabled
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2023/05/05 12:59:32 [warn] 1#1: the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:28
nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:28
2023/05/05 12:59:32 [warn] 1#1: the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:55
nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:55

  • 写回答

2条回答 默认 最新

  • 创意程序员 2023-05-05 22:08
    关注

    你配置的server重复了,两个443,两个80

    评论

报告相同问题?

问题事件

  • 创建了问题 5月5日

悬赏问题

  • ¥15 Stata链式中介效应代码修改
  • ¥15 latex投稿显示click download
  • ¥15 请问读取环境变量文件失败是什么原因?
  • ¥15 在若依框架下实现人脸识别
  • ¥15 添加组件无法加载页面,某块加载卡住
  • ¥15 网络科学导论,网络控制
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错