Skip to content

Commit

Permalink
HTTP: Add configure for nginx proxy.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Apr 24, 2022
1 parent 2b2379d commit d4cf3e0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions trunk/conf/nginx.proxy.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
worker_processes 1;
events {
worker_connections 1024;
}

http {
include /etc/nginx/mime.types;

server {
listen 80;
listen 443 ssl http2;
server_name _;
ssl_certificate /usr/local/srs/conf/server.crt;
ssl_certificate_key /usr/local/srs/conf/server.key;

# For SRS homepage, console and players
# http://r.ossrs.net/console/
# http://r.ossrs.net/players/
location ~ /(console|players)/ {
proxy_pass http://127.0.0.1:8080/$request_uri;
}
# For SRS streaming, for example:
# http://r.ossrs.net/live/livestream.flv
# http://r.ossrs.net/live/livestream.m3u8
location ~ /.+/.*\.(flv|m3u8|ts|aac|mp3)$ {
proxy_pass http://127.0.0.1:8080$request_uri;
}
# For SRS backend API for console.
# For SRS WebRTC publish/play API.
location ~ /(api|rtc)/ {
proxy_pass http://127.0.0.1:1985$request_uri;
}
}
}


0 comments on commit d4cf3e0

Please sign in to comment.