Files
fdroid-docker-reposerver/settings/nginx.conf
2023-09-13 15:21:57 +02:00

16 lines
205 B
Nginx Configuration File

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