auto-recipes-catalogue-json/nginx.conf

11 lines
201 B
Nginx Configuration File
Raw Normal View History

2021-06-05 06:33:52 +00:00
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;
}
}