mirror of
https://github.com/PaiGramTeam/telegram-bot-api-build.git
synced 2024-11-21 22:48:07 +00:00
Update default.conf
This commit is contained in:
parent
d76da0bef8
commit
a3666b3040
@ -1,3 +1,8 @@
|
||||
# use $sanitized_request instead of $request to hide Telegram token
|
||||
log_format token_filter '$remote_addr - $remote_user [$time_local] '
|
||||
'"$sanitized_request" $status $body_bytes_sent '
|
||||
'"$http_referer" "$http_user_agent"';
|
||||
|
||||
upstream telegram-bot-api {
|
||||
server api:8081;
|
||||
}
|
||||
@ -15,6 +20,12 @@ server {
|
||||
client_body_buffer_size 30M;
|
||||
keepalive_timeout 0;
|
||||
|
||||
set $sanitized_request $request;
|
||||
if ( $sanitized_request ~ (\/bot\d+):[-\w]+\/(\S+) ) {
|
||||
set $sanitized_request $1:<hidden-token>/$2;
|
||||
}
|
||||
access_log /var/log/nginx/access.log token_filter;
|
||||
|
||||
location ~* \/file\/bot\d+:(.*) {
|
||||
rewrite ^/file\/bot(.*) /$1 break;
|
||||
try_files $uri @files;
|
||||
|
Loading…
Reference in New Issue
Block a user