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.
18 lines
283 B
18 lines
283 B
events {
|
|
worker_connections 4096; ## Default: 1024
|
|
}
|
|
http {
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
server_names_hash_bucket_size 128;
|
|
|
|
server {
|
|
listen 9090;
|
|
error_page 404 /;
|
|
|
|
location / {
|
|
root /index/
|
|
}
|
|
}
|
|
}
|
|
|