moved settings to folder

This commit is contained in:
Daniele Viti
2023-09-13 15:01:41 +02:00
parent d1d9547a01
commit 9c356a140e
4 changed files with 4 additions and 4 deletions

15
settings/nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
events {
worker_connections 1024;
}
http {
server {
listen 8084;
server_name localhost;
location / {
root /fdroid/repo;
autoindex on;
}
}
}