Added nginx to serve /repo folder
This commit is contained in:
18
nginx.conf
18
nginx.conf
@@ -1,9 +1,15 @@
|
||||
server {
|
||||
listen *:8084;
|
||||
server_name localhost;
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
location / {
|
||||
root /fdroid/repo;
|
||||
autoindex on;
|
||||
http {
|
||||
server {
|
||||
listen 8084;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
root /fdroid/repo;
|
||||
autoindex on;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user