Skip to content
This repository was archived by the owner on Jan 22, 2023. It is now read-only.
This repository was archived by the owner on Jan 22, 2023. It is now read-only.

TCP tunnel is created but connection is not establishing. #17

@kenilpatepy

Description

@kenilpatepy

Error is like while making connection

TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond

My tcp config for nginx is like

server {
server_name tcp.example.com;

location = /favicon.ico { access_log off; log_not_found off; }

location /_ws/ {
    include proxy_params;
    proxy_pass http://localhost:4500;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";

    proxy_connect_timeout       600;
    proxy_send_timeout          600;
    proxy_read_timeout          600;
    send_timeout                600;
}

location / {
    include proxy_params;
    proxy_pass http://localhost:4500;
}

listen 443 ssl;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;

}

server {
server_name tcp.example.com;

location = /favicon.ico { access_log off; log_not_found off; }

location /_ws/ {
    include proxy_params;
    proxy_pass http://localhost:4500;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";

    proxy_connect_timeout       600;
    proxy_send_timeout          600;
    proxy_read_timeout          600;
    send_timeout                600;
}

location / {
    include proxy_params;
    proxy_pass http://localhost:4500;
}

listen 80;

}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions