我有一个在4200端口上运行的angular应用程序,我添加了HAProxy作为反向代理。将端口80上的所有流量重定向到4200。我的HAProxy设置适用于8080到4200,但不适用于80到4200。
global
# log /dev/log local0
# log /dev/log local1 notice
# chroot /var/lib/haproxy
# stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners
# stats timeout 30s
# user haproxy
# group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# Default ciphers to use on SSL-enabled listening sockets.
# For more information, see ciphers(1SSL). This list is from:
# https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
# An alternative list with additional directives can be obtained from
# https://mozilla.github.io/server-side-tls/ssl-config-generator/?server=haproxy
ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!MD5:!DSS
ssl-default-bind-options no-sslv3
defaults
log global
mode http
option httplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
listen http_frontend
mode http
option http-buffer-request
bind *:80
default_backend vapp
backend vapp
mode http
server ec2-15-200-79-226.ap-south-1.compute.amazonaws.com ec2-15-200-79-226.ap-south-1.compute.amazonaws.com:4200
由于日志中显示无法绑定到端口80,因此可能存在一些问题:
-
您是在这个端口上运行Nginx还是其他什么?运行
sudo netstat -ntlp
并检查是否有其他进程正在使用此端口。如果是,则必须停止它们,或者更改您的选择。 -
haproxy是否具有绑定到端口80的权限?你必须以root身份运行它才能这样做。你也可以检查这个关于将非root进程绑定到特殊端口的问题。