Replies: 1 comment
-
Upd. Looks like its gone, its happend sometimes and on a direct. But now its gone🤷♂️ (Im thinking that its http3 fault) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
idk if im doing something wrong, but im keep getting 30-35mbits upload anyway. my nginx configs
`server {
listen 442 ssl http2 proxy_protocol;
listen [::]:442 ssl http2 proxy_protocol;
}
` # Основные настройки Nginx
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
Настройки событий
events {
worker_connections 1024;
# multi_accept on;
use epoll;
}
HTTP сервер
http {
# Подключаем типы файлов и параметры по умолчанию
include /etc/nginx/mime.types;
default_type application/octet-stream;
}
Настройки для TCP/UDP потоков
stream {
# Формат логирования для stream
log_format basic '$remote_addr [$time_local] $protocol $status $bytes_sent $bytes_received';
access_log /var/log/nginx/stream-access.log basic;
error_log /var/log/nginx/stream-error.log warn;
} `
on direct port (not by nginx) and on reality (managed by nginx stream) everything is fine
can it be fixed?
Beta Was this translation helpful? Give feedback.
All reactions