mirror of
https://github.com/casjaysdevdocker/tftpd
synced 2025-11-07 14:38:17 -05:00
18 lines
359 B
Nginx Configuration File
18 lines
359 B
Nginx Configuration File
|
|
worker_processes 1;
|
||
|
|
events {
|
||
|
|
worker_connections 1024;
|
||
|
|
}
|
||
|
|
|
||
|
|
http {
|
||
|
|
include /etc/nginx/mime.types;
|
||
|
|
default_type application/octet-stream;
|
||
|
|
sendfile on;
|
||
|
|
keepalive_timeout 65;
|
||
|
|
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
root /data/tftpd;
|
||
|
|
autoindex on;
|
||
|
|
}
|
||
|
|
}
|