Skip to content
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

Update domains and URLs in docs #675

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Monitoring
Delivery Checks
---------------

The Remote Settings ecosystem can be monitored from the `Delivery Checks dashboard <https://delivery-checks.prod.mozaws.net/>`_.
The Remote Settings ecosystem can be monitored from the `Delivery Checks dashboard <https://telescope.prod.webservices.mozgcp.net/>`_.

Each environment has its own set of checks, and generally speaking if the checks pass, the service is operating without issues.

Expand Down
4 changes: 2 additions & 2 deletions docs/support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ The **recommended way** to setup Firefox to pull data from STAGE is to use the `

On Beta and Release, you have to run Firefox with the environment variable ``MOZ_REMOTE_SETTINGS_DEVTOOLS=1`` to toggle environments.

Alternatively, in order to point STAGE before on fresh profiles for example, you can set the `appropriate preferences <https://github.com/mozilla/remote-settings-devtools/blob/1.7.0/extension/experiments/remotesettings/api.js#L173-L184>`_ in a ``user.js`` file:
Alternatively, in order to point STAGE before on fresh profiles for example, you can set the `appropriate preferences <https://github.com/mozilla-extensions/remote-settings-devtools/blob/1.10.0/extension/experiments/remotesettings/api.js#L126-L131>`_ in a ``user.js`` file:

::

user_pref("services.settings.server", "https://firefox.settings.services.allizom.org/v1");
user_pref("dom.push.serverURL", "https://autopush.stage.mozaws.net");
user_pref("dom.push.serverURL", "wss://autoconnect.stage.mozaws.net");

See `developer docs <https://firefox-source-docs.mozilla.org/services/settings/#trigger-a-synchronization-manually>`_ to trigger a synchronization manually.

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial-attachments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This guide assumes that you have already installed the following commands:

And that you are familiar with the Remote Settings API, at least on the dev server.

We'll refer the running instance as ``$SERVER`` (eg. ``https://kinto.dev.mozaws.net/v1``).
We'll refer the running instance as ``$SERVER`` (eg. ``https://remote-settings-dev.allizom.org/v1``).


Introduction
Expand Down Expand Up @@ -67,7 +67,7 @@ And in order to create a record with both attributes and attachment, you'll have

.. note::

Since the dev server is open to anyone and runs on ``.mozaws.net``, we only allow certain types of files (images, audio, video, archives, ``.bin``, ``.json``, ``.gz``).
Since the dev server is open to anyone and runs on ``.allizom.org``, we only allow certain types of files (images, audio, video, archives, ``.bin``, ``.json``, ``.gz``).

If you need to upload files with a specific extension, let us know and we will add it to the whitelist (except ``.html``, ``.js``).

Expand Down
Loading