Open yaroslavmo opened 3 years ago
Have you tried this (info from docs) ?
But, on most PHP-FPM setups, you will have a permission issue preventing SPX to open a file under /proc/self directory. This is due to the fact that PHP-FPM master process runs as root when child processes run as another unprivileged user.
When this is the case, the process.dumpable = yes line must be added to the FPM pool configuration so that child processes will be able to read any file under /proc/self.
Yes I tried to set dumpable it did not help
The authentication fails so your script is executed instead of SPX's UI. You should have some logs explaining why the access is not granted.
The 2 main possible issues are:
What are your SPX INI settings ? Do you use docker ?
del
You will fix your issue by spx.http_trusted_proxies="*"
Hi. I am trying to get SPX working in Laravel.
The CLI is working fine but I could not get to the Web UI.
Here is Nginx config:
When I open
http://<my application host>/
, it redirects me to the login pagehttp://<my application host>/dreamfactory/dist/index.html#/login
. When I tryhttp://<my application host>/?SPX_KEY=dev&SPX_UI_URI=/
according to the doc it still just redirects me to the login page. At this point, I have never seen the Web UI of SPX on my site. Can you help me get it working?