mirror of
https://github.com/cupcakearmy/docker-static.git
synced 2024-12-21 15:56:30 +00:00
28 lines
462 B
Nginx Configuration File
28 lines
462 B
Nginx Configuration File
user nobody;
|
|
worker_processes auto;
|
|
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_x_forwarded_for"';
|
|
|
|
sendfile on;
|
|
keepalive_timeout 30;
|
|
|
|
etag on;
|
|
gzip on;
|
|
brotli on;
|
|
brotli_types *;
|
|
|
|
server_tokens off;
|
|
|
|
include sites/*.conf;
|
|
}
|