- Added `make fnginx` to have better dev experience - Added app.conf to nginx configuration to handle frontend
8 lines
126 B
Text
8 lines
126 B
Text
location /app {
|
|
root /volumes/static/app/;
|
|
try_files /index.html =404;
|
|
}
|
|
|
|
location /assets {
|
|
root /volumes/static/app/;
|
|
}
|