Skip to content

Commit

Permalink
docs: move demo server to edly url
Browse files Browse the repository at this point in the history
  • Loading branch information
regisb committed Nov 14, 2023
1 parent 3b2373f commit 5412325
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
8 changes: 4 additions & 4 deletions docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 protected] password=admin
* Student user: username=student [email protected] 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.

Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/v0/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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>`__::

Expand Down

0 comments on commit 5412325

Please sign in to comment.