We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using docker and it appears to work but the nginx isn't setup properly for streaming (no data is coming through):
server { server_name stream.profullstack.com; index index.html; root /home/ubuntu/www/profullstack.com/stream; add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0'; add_header 'Last-Modified' ''; if_modified_since off; expires -1; etag off; listen [::]:443 ssl http2; #managed by Certbot listen 443 ssl http2; #managed by Certbot ssl_certificate /etc/letsencrypt/live/stream.profullstack.com/fullchain.pem; #managed by Certbot ssl_certificate_key /etc/letsencrypt/live/stream.profullstack.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; #managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; #managed by Certbot #try_files $uri $uri/ /index.html; client_max_body_size 10M; location ~ /\. { deny all; return 403; } location /restreamer/ { proxy_pass http://127.0.0.1:8080/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_cache_bypass $http_upgrade; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwarded-For $remote_addr; } }
what else do i need to add?
The text was updated successfully, but these errors were encountered:
bump
Sorry, something went wrong.
No branches or pull requests
I am using docker and it appears to work but the nginx isn't setup properly for streaming (no data is coming through):
what else do i need to add?
The text was updated successfully, but these errors were encountered: