[fix] Build deps and flower version

Fixes taken from the repo issues to enable building the frontend and the last known compatible flower version
This commit is contained in:
2022-08-22 16:07:59 -06:00
parent 59adb23a90
commit 983ce03fc8
3 changed files with 27 additions and 9 deletions

11
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}