Skip to content

Instantly share code, notes, and snippets.

View swip3798's full-sized avatar

Christian Schweigel swip3798

  • SAP SE
  • Karlsruhe, Germany
View GitHub Profile
@steve-ng
steve-ng / nginx.conf
Last active May 28, 2024 08:27
Nginx reverse proxy wss with ssl
server {
listen 443 ssl;
server_name xxx.xx.io
ssl on;
ssl_certificate /etc/asterisk/certs/xxx.io.pem;
ssl_certificate_key /etc/asterisk/certs/xxx.io.key;
ssl_session_timeout 5m;