You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
410 B
17 lines
410 B
2 years ago
|
user root;
|
||
|
pcre_jit on;
|
||
|
worker_processes auto;
|
||
|
error_log /dev/stdout warn;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
log_format access '[$time_iso8601] $remote_addr -> $scheme://$host - "$request"'
|
||
|
' -> ($status) ↑$request_length ↓$bytes_sent {$http_user_agent}';
|
||
|
access_log /dev/stdout access;
|
||
|
include /etc/nginx/mime.types;
|
||
|
include /etc/nginx/alltube.conf;
|
||
|
}
|