Files
fdroid-docker-reposerver/nginx.conf
2023-09-12 17:57:30 +02:00

16 lines
210 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
listen 8084;
server_name localhost;
location / {
root /fdroid/repo;
autoindex on;
}
}
}