Điểm:0

Is there a difference between nginx single or multiple server configuration?

lá cờ de

There are several services running on different ports on my web server. These services are providing data via WebSocket.

Currently, each service has its own server in the nginx configuration, like this:

server {
        listen 9031 ssl;
        location / {
                proxy_pass http://127.0.0.1:9002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }
}

server {
        listen 8031 ssl;
        location / {
                proxy_pass http://127.0.0.1:8002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }
}

server {
        listen 7031 ssl;
        location / {
                proxy_pass http://127.0.0.1:7002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }
}

server {
        listen 6031 ssl;
        location / {
                proxy_pass http://127.0.0.1:6002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }
}

server {
        listen 5031 ssl;
        location / {
                proxy_pass http://127.0.0.1:5002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }
}

What I also could do is something like this:

server {
        listen 9031 ssl;
        location /service1 {
                proxy_pass http://127.0.0.1:9002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }

        location /service2 {
                proxy_pass http://127.0.0.1:8002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }

        location /service3 {
                proxy_pass http://127.0.0.1:7002;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                proxy_read_timeout 86400;
        }

        ...
}

The second approach looks a bit nicer (and a nice side effect would be to have fewer ports that needs to be configured on the router). But my questions are now: is there a method to prefer? Are there any side-effects in terms of performance, stability etc.? What is the recommended approach or is it the same which one to use?

Điểm:1
lá cờ us

Tôi đã sử dụng cả hai phương pháp trong quá khứ và cả hai đều là cấu hình hợp lệ.

Trong cách tiếp cận thứ hai, hãy để ý các đường dẫn bị thiếu trong các URL trong phản hồi của bạn với khách hàng. Bạn có thể cần sử dụng viết lại hoặc một cái gì đó tương tự. Có một số cách tiếp cận để phù hợp với điều này.

Ví dụ, nếu tôi yêu cầu https://www.example.com/service1, phản hồi từ http://127.0.0.1:9002 cần bao gồm đường dẫn /dịch vụ1 vì vậy mọi yêu cầu tiếp theo sẽ đạt được dịch vụ dự định.

Lars avatar
lá cờ de
thx cho phản ứng của bạn. Điều đó giúp với việc ra quyết định.

Đăng câu trả lời

Hầu hết mọi người không hiểu rằng việc đặt nhiều câu hỏi sẽ mở ra cơ hội học hỏi và cải thiện mối quan hệ giữa các cá nhân. Ví dụ, trong các nghiên cứu của Alison, mặc dù mọi người có thể nhớ chính xác có bao nhiêu câu hỏi đã được đặt ra trong các cuộc trò chuyện của họ, nhưng họ không trực giác nhận ra mối liên hệ giữa câu hỏi và sự yêu thích. Qua bốn nghiên cứu, trong đó những người tham gia tự tham gia vào các cuộc trò chuyện hoặc đọc bản ghi lại các cuộc trò chuyện của người khác, mọi người có xu hướng không nhận ra rằng việc đặt câu hỏi sẽ ảnh hưởng—hoặc đã ảnh hưởng—mức độ thân thiện giữa những người đối thoại.