Files
fdroid-frajul/nginx.conf
T
2025-10-09 08:26:53 +02:00

11 lines
136 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
autoindex on;
}
}