-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing to Apache #163
Comments
An update I got it fully installed to my shared Linux hosting account, (which is cloud linux not Apache, but has cPanel and is easier to administer), and ran mathicsserver from ssh, successfully; however, once again, it's running from inside a ssh window, and it seems to be hard-coded to listen to port 8000 I need to marry the mathics server to a python web application that I have defined on my hosting provider. This needs to map it to a url path on my server and requests will come in on 443 not 8000. the command "mathicsserver" can be part of the startup code for the web application. |
Use the option -p 443 |
I need a general clue as to how to route traffic at |
MathicsServer is a Django server, so maybe this could be helpful: https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/modwsgi/ |
I'm sure this question is beyond the scope of this project itself, but what would be the general approach to integrating my (working) Mathics core/Django installation to a local Apache web server running on the same machine? Perhaps all Python apps are integrated into Apache in roughly the same way, perhaps not.
My motivation is that now I have Mathics running OK locally,
I would prefer it just be running in the background so that when I go to the url, it just works, just like any other website.
If I end up pushing this to Apache, perhaps I could put those integration files into a pull request. And it could just be an optional part of setup.
The text was updated successfully, but these errors were encountered: