You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<VirtualHost *:80>
ServerName example.com
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>
<VirtualHost *:443>
ServerName example.com
ProxyRequests Off
ProxyPass / http://localhost:1234/
ProxyPassReverse / http://localhost:1234/
Header always set Content-Security-Policy "upgrade-insecure-requests"
SSLCertificateFile /home/example/.acme.sh/example.com_ecc/fullchain.cer
SSLCertificateKeyFile /home/example/.acme.sh/example.com_ecc/example.com.key
</VirtualHost>
When browsing to the frontend, I get redirected to /login, but then I'm encountering an empty blue page with throwing the following error in console :
Uncaught (in promise) TypeError: Cannot read properties of null (reading 'refs')
at Xl (VM1367 app-CH3t7HKu.js:50:33434)
at w (VM1367 app-CH3t7HKu.js:50:38376)
at W (VM1367 app-CH3t7HKu.js:50:39795)
at N (VM1367 app-CH3t7HKu.js:50:39081)
at k (VM1367 app-CH3t7HKu.js:50:38882)
at w (VM1367 app-CH3t7HKu.js:50:38254)
at W (VM1367 app-CH3t7HKu.js:50:39795)
at N (VM1367 app-CH3t7HKu.js:50:39081)
at k (VM1367 app-CH3t7HKu.js:50:38882)
at w (VM1367 app-CH3t7HKu.js:50:38254)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
Here's my
compose.yml
:And here's my Apache configuration :
When browsing to the frontend, I get redirected to
/login
, but then I'm encountering an empty blue page with throwing the following error in console :What to do ?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions