Skip to content

Commit 1ca91ab

Browse files
Fix internal links (#7063)
* Update internal links * Fix anchor links
1 parent 9be359d commit 1ca91ab

File tree

100 files changed

+110
-110
lines changed
  • docs
    • guides
      • applications
        • big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm
        • cloud-storage
          • install-and-configure-owncloud-on-centos-stream-8
          • install-and-configure-owncloud-on-debian-10
          • install-and-configure-owncloud-on-ubuntu-20-04
        • configuration-management
          • ansible
            • deploy-linodes-using-linode-ansible-collection
            • use-ansible-to-automate-web-server-infrastructure
          • cloud-init/using-metadata-cloud-init-on-any-distribution
          • packer/deploy-packer-image-with-terraform
          • pulumi/deploy-in-code-with-pulumi
          • salt/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems
          • terraform
            • create-a-multicloud-infrastructure-using-terraform
            • how-to-deploy-secure-linodes-using-cloud-firewalls-and-terraform
        • containers/using-nomad-for-orchestration
        • project-management/install-farmos
        • social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin
      • development
        • nodejs/nodejs-twitter-bot
        • python/use-paramiko-python-to-ssh-into-a-server
        • version-control/install-apache-subversion-ubuntu
      • game-servers/deploy-7-days-to-die-linux-game-server
      • kubernetes
        • deploy-nginx-ingress-on-lke
        • deploy-volumes-with-the-linode-block-storage-csi-driver
        • how-to-configure-load-balancing-with-tls-encryption-on-a-kubernetes-cluster
      • networking
        • dns
          • dns-primary-and-secondary-server-setup
          • introduction-to-dns-on-linux
        • vpn
      • platform/migrate-to-linode
        • how-to-migrate-from-gcp-to-linode
        • migrating-a-server-to-your-linode
      • security
        • monitoring/how-to-use-the-linode-api-with-twilio
        • selinux
          • a-beginners-guide-to-selinux-on-centos-7
          • a-beginners-guide-to-selinux-on-centos-8
      • tools-reference/custom-kernels-distros
        • install-a-custom-distribution-on-a-xen-linode
        • run-a-distributionsupplied-kernel-with-pvgrub
      • uptime
      • web-servers
        • lamp/how-to-create-a-lamp-stack-application
        • lemp/how-to-create-a-lemp-stack-application
      • websites
        • cms
          • strapi/using-strapi-cms
          • wordpress/how-to-set-up-multiple-wordpress-sites-with-lxd-containers
        • erp/install-an-odoo-13-stack-on-debian-10
        • hosting
          • secure-website-lets-encrypt-acme-sh
          • set-up-web-server-host-website
    • products

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+110
-110
lines changed

docs/guides/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ These are the names we'll use, but you are welcome to choose your own when creat
7878

7979
### Get a Linode API Key
8080

81-
Follow the steps in [Generating an API Key](/docs/products/tools/api/guides/manage-api-tokens/) and save your key securely. It will be entered into configuration files in upcoming steps.
81+
Follow the steps in [Generating an API Key](/docs/products/platform/accounts/guides/manage-api-tokens/) and save your key securely. It will be entered into configuration files in upcoming steps.
8282

8383
If the key expires or is removed, remember to create a new one and update the `api_env_linode.conf` API environment configuration file on the cluster manager Linode. This will be explained further in the next section.
8484

docs/guides/applications/cloud-storage/install-and-configure-owncloud-on-centos-stream-8/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ownCloud requires a full LAMP (Linux, Apache, MySQL, PHP) stack. In this section
8383
sudo firewall-cmd --reload
8484
```
8585

86-
1. Ensure you can reach the Apache server. Open a web browser, and enter in your [Linode's IP address](/docs/guides/find-your-linodes-ip-address/). For example, enter in `http://192.0.2.0` and replace the IP address with your own. You should see the Apache welcome page.
86+
1. Ensure you can reach the Apache server. Open a web browser, and enter in your [Linode's IP address](/docs/products/compute/compute-instances/guides/manage-ip-addresses/). For example, enter in `http://192.0.2.0` and replace the IP address with your own. You should see the Apache welcome page.
8787
8888
#### Install MariaDB
8989
@@ -228,7 +228,7 @@ Apache requires a [virtual host configuration file](https://httpd.apache.org/doc
228228
sudo nano /etc/httpd/conf.d/owncloud.conf
229229
```
230230

231-
1. Paste the following text into the new file. Replace mentions of `example.com` with your own domain name or your [Linode's IP Address](/docs/guides/find-your-linodes-ip-address/):
231+
1. Paste the following text into the new file. Replace mentions of `example.com` with your own domain name or your [Linode's IP Address](/docs/products/compute/compute-instances/guides/manage-ip-addresses/):
232232
233233
```file {title="etc/httpd/conf.d/owncloud.conf"}
234234
Alias /owncloud "/var/www/html/owncloud/"

docs/guides/applications/cloud-storage/install-and-configure-owncloud-on-debian-10/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Apache requires a [virtual host configuration file](https://httpd.apache.org/doc
162162
sudo nano /etc/apache2/sites-available/owncloud.conf
163163

164164

165-
1. Paste the following text into the new file. Replace mentions of `example.com` with your own domain name or your [Linode's IP Address](/docs/guides/find-your-linodes-ip-address/):
165+
1. Paste the following text into the new file. Replace mentions of `example.com` with your own domain name or your [Linode's IP Address](/docs/products/compute/compute-instances/guides/manage-ip-addresses/):
166166

167167
{{< file "/etc/apache2/sites-available/owncloud.conf">}}
168168
<VirtualHost \*:80>

docs/guides/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-20-04/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Apache requires a [virtual host configuration file](https://httpd.apache.org/doc
156156
sudo nano /etc/apache2/sites-available/owncloud.conf
157157

158158

159-
1. Paste the following text into the new file. Replace mentions of `example.com` with your own domain name or your [Linode's IP Address](/docs/guides/find-your-linodes-ip-address/):
159+
1. Paste the following text into the new file. Replace mentions of `example.com` with your own domain name or your [Linode's IP Address](/docs/products/compute/compute-instances/guides/manage-ip-addresses/):
160160

161161
{{< file "/etc/apache2/sites-available/owncloud.conf">}}
162162
<VirtualHost \*:80>

docs/guides/applications/configuration-management/ansible/deploy-linodes-using-linode-ansible-collection/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The Linode Ansible collection is now installed and ready to deploy and manage Li
8888

8989
## Configure Ansible
9090

91-
When interfacing with the Linode Ansible collection, it is generally good practice to use variables to securely store sensitive strings like API tokens. This section shows how to securely store and access the [Linode API Access token](/docs/products/tools/api/guides/manage-api-tokens/) (generated in the [Before You Begin](#before-you-begin) section) along with a root password that is assigned to new Linode instances. Both of these are encrypted with [Ansible Vault](https://docs.ansible.com/ansible/latest/user_guide/vault.html).
91+
When interfacing with the Linode Ansible collection, it is generally good practice to use variables to securely store sensitive strings like API tokens. This section shows how to securely store and access the [Linode API Access token](/docs/products/platform/accounts/guides/manage-api-tokens/) (generated in the [Before You Begin](#before-you-begin) section) along with a root password that is assigned to new Linode instances. Both of these are encrypted with [Ansible Vault](https://docs.ansible.com/ansible/latest/user_guide/vault.html).
9292

9393
### Create an Ansible Vault Password File
9494

docs/guides/applications/configuration-management/ansible/use-ansible-to-automate-web-server-infrastructure/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ Ansible playbooks are what makes Ansible powerful software. The syntax of the ta
383383
Using `scp`, the above files are sent to the Ansible control node. You can then log into the control node and execute the control node script, `ansibleCN_setup.sh`.
384384

385385
{{< note >}}
386-
Throughout all the steps in this section, replace `VM1_IPADDRESS` with the [IP address](/docs/guides/find-your-linodes-ip-address/) obtained from either the Linode CLI or Cloud Manager.
386+
Throughout all the steps in this section, replace `VM1_IPADDRESS` with the [IP address](/docs/products/compute/compute-instances/guides/manage-ip-addresses/) obtained from either the Linode CLI or Cloud Manager.
387387
{{< /note >}}
388388

389389
{{< note type="alert" >}}

docs/guides/applications/configuration-management/cloud-init/using-metadata-cloud-init-on-any-distribution/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ A few configuration steps are necessary to prepare the cloud-init installation f
127127
```
128128
## Create a Custom Image
129129
130-
Creating an image from the instance setup above allows you to deploy new instances leveraging the Metadata service and custom cloud-init deployment scripts. For more on creating an image of an Akamai Compute Instance, you can refer to our [Capture an Image](/docs/products/tools/images/guides/capture-an-image/#capturing-an-image-through-the-cloud-manager) guide.
130+
Creating an image from the instance setup above allows you to deploy new instances leveraging the Metadata service and custom cloud-init deployment scripts. For more on creating an image of an Akamai Compute Instance, you can refer to our [Capture an Image](/docs/products/tools/images/guides/capture-an-image/#capturing-an-image-through-cloud-manager) guide.
131131
132132
What follows is a summary of steps you can use to create a base image from the instance on which you installed cloud-init.
133133

docs/guides/applications/configuration-management/packer/deploy-packer-image-with-terraform/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ This tutorial handles variables using two files.
222222
image_id = "private/<LinodeImageId>"
223223
```
224224

225-
The `<LinodeApiToken>` needs to be an API token associated with your Linode account. You can follow our [Get an API Access Token](/docs/products/tools/api/guides/manage-api-tokens/) guide to generate a personal access token. Be sure to give the token "Read/Write" permissions.
225+
The `<LinodeApiToken>` needs to be an API token associated with your Linode account. You can follow our [Get an API Access Token](/docs/products/platform/accounts/guides/manage-api-tokens/) guide to generate a personal access token. Be sure to give the token "Read/Write" permissions.
226226

227227
Above, you can see a value of `private/<LinodeImageId>` for the `image_id`. This value should match the image ID for the Linode image you created with Packer. All custom Linode images are prefaced with `private/` and conclude with the image's ID. In these examples, `private/17691867` is assumed to be the ID for the Linode image built with Packer.
228228

docs/guides/applications/configuration-management/pulumi/deploy-in-code-with-pulumi/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In this guide you will learn how to:
3333

3434
## Before You Begin
3535

36-
1. If you haven't yet, [create a Linode API token](/docs/products/tools/api/guides/manage-api-tokens/#create-an-api-token).
36+
1. If you haven't yet, [create a Linode API token](/docs/products/platform/accounts/guides/manage-api-tokens/#create-an-api-token).
3737

3838
1. [Create a free Pulumi Cloud account](https://app.pulumi.com/signup).
3939

docs/guides/applications/configuration-management/salt/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This guide shows how to install Salt Cloud and configure it to work on a Linode.
3333

3434
2. This guide assumes that Salt Cloud will be installed together with Salt master server.
3535

36-
3. Generate an [API key](/docs/products/tools/api/guides/manage-api-tokens/) to access Linode API. This key will be used by Salt Cloud to manage your instances. Make sure to keep your API key safe. Set the environment variable `API_TOKEN` and test your API key is working through the REST interface:
36+
3. Generate an [API key](/docs/products/platform/accounts/guides/manage-api-tokens/) to access Linode API. This key will be used by Salt Cloud to manage your instances. Make sure to keep your API key safe. Set the environment variable `API_TOKEN` and test your API key is working through the REST interface:
3737

3838
curl -H "Authorization:Bearer $API_TOKEN" https://api.linode.com/v4/account | json_pp
3939

0 commit comments

Comments
 (0)