Merge pull request #21 from ovh/docfixes

chore: fix some links in documentation
This commit is contained in:
Stéphane Lesimple 2020-10-30 11:21:32 +01:00 committed by GitHub
commit 8efd6f30ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 5 deletions

View file

@ -11,7 +11,7 @@ Learn more by reading the blog post series that announced the release:
- [Part 1 - Genesis](https://www.ovh.com/blog/the-ovhcloud-bastion-part-1/)
- [Part 2 - Delegation Dizziness](https://www.ovh.com/blog/the-ovhcloud-ssh-bastion-part-2-delegation-dizziness/)
- [Part 3 - Security at the Core](https://www.ovh.com/blog/the-bastion-part-3-security-at-the-core/)
- [Part 4 - A new era](https://www.ovh.com/blog/the-ovhcloud-ssh-bastion-announcement/)
- [Part 4 - A new era](https://www.ovh.com/blog/the-bastion-part-4-a-new-era/)
## Installing, upgrading, using The Bastion

View file

@ -21,7 +21,7 @@ The OVH::Bastion directory hierarchy is organized as follows:
- bin/other: other helper scripts for various tasks
- contrib: placeholder directory with a readme file that references other repositories of interest when integrating the bastion in your company
- doc: sysadmin-proof documentation folder, the main Markdown files you need are there, just one `view` appart
- doc/sphinx: more complete documentation using the `sphinx` documentation system, the built version is viewable on https://ovh.github.io/bastion
- doc/sphinx: more complete documentation using the `sphinx` documentation system, the built version is viewable on https://ovh.github.io/the-bastion/
- docker: where the Dockerfiles reside
- etc: contains all the template configuration files that will be installed on your system (depending on your `install` options)
- install: where optional modules can push their install script to be called by the main install script

View file

@ -47,5 +47,4 @@ Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

View file

@ -360,6 +360,6 @@
#
# documentationURL (string)
# DESC: The URL of the documentation where users will be pointed to, for example when displaying help. If you have some internal documentation about the bastion, you might want to advertise it here.
# DEFAULT: "https://ovh.github.io/bastion/"
# DEFAULT: "https://ovh.github.io/the-bastion/"
"documentationURL": "https://ovh.github.io/the-bastion/"
}

View file

@ -236,7 +236,7 @@ sub load_configuration {
map { s/[^a-zA-Z0-9_-]//g; $_ } @{$C->{'adminAccounts'}}
];
$C->{'documentationURL'} ||= "https://ovh.github.io/bastion/";
$C->{'documentationURL'} ||= "https://ovh.github.io/the-bastion/";
# we've checked everything. now forcibly untaint all of it.
foreach my $key (keys %$C) {