Hi guys,
I have a semi-working setup with nginx, and will be using this post to post finding and configs that works for me ![]()
current state:
Xibo admin page - working
Xibo XMR - working
Xibo ChromeOS - WIP
Integration with Certbot - simple (standard Nginx)
My current nginx config:
location /api/authorize {
try_files $uri /api/authorize/index.php?args;
}
location /api {
try_files $uri /api/index.php?$args;
}
location /maint {
try_files $uri /maint/index.php?$args;
}
location /maintenance {
try_files $uri /index.php?$args;
}
location /pwa/getResource.*$ {
try_files $uri /pwa/index.php$args;
}
location /pwa/getData.*$ {
try_files $uri /pwa/index.php$args;
}
location /pwa {
rewrite ^/pwa/(.*)$ /chromeos/$1 last;
}
location /chromeos {
alias <Xibo Install folder>/library/public/playersoftware/chromeos/latest/;
try_files $uri $uri /chromeos/chromeos/index.html$args;
ChromeOS now displays something which is better then what we had before
