11 lines
201 B
Nginx Configuration File
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;
|
|
}
|
|
}
|