23 lines
204 B
Nginx Configuration File
23 lines
204 B
Nginx Configuration File
events {
|
|
worker_connections 64;
|
|
}
|
|
|
|
http {
|
|
|
|
include backends.conf;
|
|
|
|
disable_symlinks off;
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
error_log /dev/stderr;
|
|
|
|
include seafile/*.conf;
|
|
|
|
include extra.conf;
|
|
}
|
|
|
|
}
|