mirror of https://github.com/Chocobozzz/PeerTube
Update nginx template
Add rate limit to download and private static filespull/5378/head
parent
ae7b0cbbcf
commit
216fa9d579
|
@ -214,8 +214,16 @@ server {
|
||||||
try_files $uri @api;
|
try_files $uri @api;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ ^/static/(webseed|streaming-playlists)/private/ {
|
location ~ ^(/static/(webseed|streaming-playlists)/private/)|^/download {
|
||||||
try_files /dev/null @api;
|
# We can't rate limit a try_files directive, so we need to duplicate @api
|
||||||
|
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|
||||||
|
proxy_limit_rate 5M;
|
||||||
|
|
||||||
|
proxy_pass http://backend;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Bypass PeerTube for performance reasons. Optional.
|
# Bypass PeerTube for performance reasons. Optional.
|
||||||
|
@ -231,9 +239,9 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Use this line with nginx >= 1.17.0
|
# Use this line with nginx >= 1.17.0
|
||||||
#limit_rate $peertube_limit_rate;
|
limit_rate $peertube_limit_rate;
|
||||||
# Or this line if your nginx < 1.17.0
|
# Or this line with nginx < 1.17.0
|
||||||
set $limit_rate $peertube_limit_rate;
|
# set $limit_rate $peertube_limit_rate;
|
||||||
|
|
||||||
if ($request_method = 'OPTIONS') {
|
if ($request_method = 'OPTIONS') {
|
||||||
add_header Access-Control-Allow-Origin '*';
|
add_header Access-Control-Allow-Origin '*';
|
||||||
|
|
Loading…
Reference in New Issue