iptables -A INPUT -p tcp -m tcp --dport 8443 -j ACCEPT
Добрый день.
На веб-интерфейс идут порты 8081 HTTP и 8444 HTTPS.
На вебсокеты идут порты 8080 WS, 8443 WSS.
Все порты конфигурируемы через настройки.
Например, в продакшене можно указать порт 443 WSS вместо 8443 WSS.
Все лишние порты можно закрыть на iptables.
Все используемые порты перечислены здесь:Code:iptables -A INPUT -p tcp -m tcp --dport 8443 -j ACCEPT
Архитектура - Web Call Server 5.2 - RU - Flashphoner Documentation
docs.flashphoner.com
Да, такая схема работы возможна.Могу ли я спрятать wss за nginx и сделать на нем basic auth, чтобы при подключении была авторизация?
wss://login:password@host:port
http
файла nginx.conf
):http {
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 /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# включение Basic Auth
auth_basic "Restricted Area";
auth_basic_user_file /etc/nginx/.htpasswd;
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name v3;
root /var/www;
include /etc/nginx/default.d/*.conf;
location / {
proxy_pass http://localhost:8080; # имя сервера и порт для WS
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
}