This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
auto-apps-json/nginx.conf

11 lines
201 B
Nginx Configuration File

server {
listen 80 default_server;
server_name apps.coopcloud.tech;
location / {
root /var/www/abra-apps;
add_header Content-Type application/json;
index apps.json;
}
}