mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-04 10:58:24 +00:00
docs: move demo server to edly url (#939)
This commit is contained in:
parent
3b2373f6f1
commit
674e63a392
@ -68,10 +68,10 @@ Configuring DNS records
|
||||
|
||||
When running a server in production, it is necessary to define `DNS records <https://en.wikipedia.org/wiki/Domain_Name_System#Resource_records>`__ which will make it possible to access your Open edX platform by name in your browser. The precise procedure to create DNS records varies from one provider to the next and is beyond the scope of these docs. You should create a record of type A with a name equal to your LMS hostname (given by ``tutor config printvalue LMS_HOST``) and a value that indicates the IP address of your server. Applications other than the LMS, such as the studio, ecommerce, etc. typically reside in subdomains of the LMS. Thus, you should also create a CNAME record to point all subdomains of the LMS to the LMS_HOST.
|
||||
|
||||
For instance, the demo Open edX server that runs at https://demo.openedx.overhang.io has the following DNS records::
|
||||
For instance, to run an Open edX server at https://learn.mydomain.com on a server with IP address 1.1.1.1, you would need to configure the following DNS records::
|
||||
|
||||
demo.openedx 1800 IN A 172.105.89.208
|
||||
*.demo.openedx 1800 IN CNAME demo.openedx.overhang.io.
|
||||
learn 1800 IN A 1.1.1.1
|
||||
*.learn 1800 IN CNAME learn.mydomain.com.
|
||||
|
||||
.. _cloud_install:
|
||||
|
||||
|
@ -56,17 +56,17 @@ Because Docker containers are becoming an industry-wide standard, that means tha
|
||||
Where can I try Open edX and Tutor?
|
||||
-----------------------------------
|
||||
|
||||
A demo Open edX platform is available at https://demo.openedx.overhang.io. This platform was deployed using Tutor and the `Indigo theme <https://github.com/overhangio/indigo>`__. Feel free to play around with the following credentials:
|
||||
A demo Open edX platform is available at https://demo.openedx.edly.io. This platform was deployed using Tutor and the `Indigo theme <https://github.com/overhangio/indigo>`__. Feel free to play around with the following credentials:
|
||||
|
||||
* Admin user: username=admin email=admin@overhang.io password=admin
|
||||
* Student user: username=student email=student@overhang.io password=student
|
||||
|
||||
The Android mobile application for this demo platform can be downloaded at this url: https://mobile.demo.openedx.overhang.io/app.apk
|
||||
The Android mobile application for this demo platform can be downloaded at this url: https://mobile.demo.openedx.edly.io/app.apk
|
||||
|
||||
Urls:
|
||||
|
||||
* LMS: https://demo.openedx.overhang.io
|
||||
* Studio (CMS): https://studio.demo.openedx.overhang.io
|
||||
* LMS: https://demo.openedx.edly.io
|
||||
* Studio (CMS): https://studio.demo.openedx.edly.io
|
||||
|
||||
The platform is reset every day at 9:00 AM, `Paris (France) time <https://time.is/Paris>`__, so feel free to try and break things as much as you want.
|
||||
|
||||
|
@ -201,7 +201,7 @@ Any user who installs the ``myplugin`` plugin can then run::
|
||||
|
||||
$ tutor myplugin
|
||||
Hello from myplugin!
|
||||
My LMS host is demo.openedx.overhang.io
|
||||
My LMS host is learn.myserver.com
|
||||
|
||||
You can even define subcommands by creating `command groups <https://click.palletsprojects.com/en/8.0.x/api/#click.Group>`__::
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user