Adrian Smith
Adrian Smith
I've tried `php bin/fusio deploy` and `php bin/fusio route` which has added some routes but not /fusio
based on a issue in this repo I've changed by config to: ``` server { listen 80; server_name fusio; root /var/www/fusio/public; index index.php access_log off; error_log /var/log/nginx/fusio.log; location / {...
I needed to add index.htm to `index index.php` i.e. `index index.php index.htm` inside nginx config
I also needed to add index index.php index.htm and index.html i.e. `index index.php index.htm index.html`
I've got the same issue as the original comment in this thread, at this route: /developer/documentation/api ``` { "success": false, "title": "PSX\\Framework\\Loader\\InvalidPathException", "message": "Unknown location in \/private\/var\/www\/fusio\/vendor\/psx\/framework\/src\/Loader\/Loader.php on line 121",...
yeah, telling nginx to consider index.htm and index.html index files fixed /fusio, but weirdly I now have the same issue again but at the route: /developer/documentation/api Weird I just noticed...
Thank you for the update, I get the above with `try_files $uri $uri/ /index.php?a=$uri;` but again some routes work and some don't
Context: https://clojurians.slack.com/archives/C7Q9GSHFV/p1649630764612899
ah nice thank you, I've only just seen this, will try it out @jpmonettas
There should be a better way of doing this but below worked for me: Add this dependency to your `~/.clojure/deps.edn` (create it if it doesn't exist) `{:deps {org.clojure/data.json {:mvn/version "2.4.0"}}}`...