I've got some SQLite databases too big to push to Heroku or the other services with built-in support in datasette.
So instead I moved my datasette code and databases to a remote server on Kimsufi. In the folder containing the SQLite databases I run the following code.
nohup datasette serve -h 0.0.0.0 *.db --cors --port 8000 --metadata metadata.json > output.log 2>&1 &.
When I go to http://my-remote-server.com:8000, the site loads. But I know this is not a good long-term solution to running datasette on this server.
What is the "correct" way to have this site run, preferably on server port 80?
I've got some SQLite databases too big to push to Heroku or the other services with built-in support in datasette.
So instead I moved my datasette code and databases to a remote server on Kimsufi. In the folder containing the SQLite databases I run the following code.
nohup datasette serve -h 0.0.0.0 *.db --cors --port 8000 --metadata metadata.json > output.log 2>&1 &.When I go to
http://my-remote-server.com:8000, the site loads. But I know this is not a good long-term solution to running datasette on this server.What is the "correct" way to have this site run, preferably on server port 80?