14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
server {
|
|
listen 80;
|
|
server_name label.app.oncloud.my.id;
|
|
root /home/wartana/myApp/label;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
# Enable CORS if needed
|
|
add_header Access-Control-Allow-Origin *;
|
|
}
|