mirror of
https://github.com/ovh/the-bastion.git
synced 2025-01-01 13:01:53 +08:00
chore: fix some links in documentation
This commit is contained in:
parent
7a1dc03682
commit
26e78f424b
5 changed files with 4 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -47,5 +47,4 @@ Indices and tables
|
|||
==================
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
||||
|
|
|
@ -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/"
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue