16 lines
210 B
Nginx Configuration File
16 lines
210 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 8084;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /fdroid/repo;
|
|
autoindex on;
|
|
}
|
|
}
|
|
}
|