11 lines
206 B
Nginx Configuration File
11 lines
206 B
Nginx Configuration File
|
server {
|
||
|
listen 80 default_server;
|
||
|
server_name abra-apps.autonomic.zone;
|
||
|
|
||
|
location / {
|
||
|
root /var/www/abra-apps;
|
||
|
add_header Content-Type application/json;
|
||
|
index installer;
|
||
|
}
|
||
|
}
|