Code Monkey home page Code Monkey logo

Comments (2)

itsallinyourhead avatar itsallinyourhead commented on June 9, 2024 1

It works correctly with nginx now. Looks similar to your domain.
If anyone is interested:

server {
	listen                          [::]:443 http2 ssl;
	listen                          443 http2 ssl;
	server_name                     briefing.example.com;

	ssl_certificate                 ../certs/chained.pem;
	ssl_certificate_key             ../certs/private.pem;
	ssl_stapling_file               ../certs/stapling.pem;

	location ~^/(favicon\.ico|robots\.txt|serviceWorker\.js)$ {
			try_files               /$uri =444;
	}
	location ~^/(css|js|pics)/ {
			try_files               /$uri =444;
	}
	location ~^/([a-z]+\-[a-z]+\-[0-9]+|)$ {
			access_log              logs/briefing.example.com https;
			error_log               logs/error;
			expires                 0;
			try_files               /$uri /index.html =444;
	}
	location /zerva-websocket {
		proxy_http_version          1.1;
		proxy_pass                  http://LOCAL_IP_ADDRESS:8080;
		proxy_set_header            Connection "upgrade";
		proxy_set_header            Host $http_host;
		proxy_set_header            Upgrade $http_upgrade;
		proxy_set_header            X-Forwarded-For $proxy_add_x_forwarded_for;
	}

	root                            /usr/local/briefing/www;
}
git clone https://github.com/holtwick/briefing.git
cd briefing
npm install
npm run build
npm start

from briefing.

holtwick avatar holtwick commented on June 9, 2024

Moin Moin.

Please get started here https://github.com/holtwick/briefing/blob/master/docs/installation/README.md

There are some services like STUN and the signaling via Websocket, that might need special configurations. You may also use those of Briefing in the beginning and start using your own step by step then.

UPD sounds like the actual WebRTC connection. Taht should usually not go to the server, except for TURN. See docs for details.

from briefing.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.