diff --git a/README.md b/README.md index 91fac61..948d694 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/doc/HIERARCHY.md b/doc/HIERARCHY.md index a91bf5e..47133ab 100644 --- a/doc/HIERARCHY.md +++ b/doc/HIERARCHY.md @@ -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 diff --git a/doc/sphinx/index.rst b/doc/sphinx/index.rst index b7b36c7..5a5236f 100644 --- a/doc/sphinx/index.rst +++ b/doc/sphinx/index.rst @@ -47,5 +47,4 @@ Indices and tables ================== * :ref:`genindex` -* :ref:`modindex` * :ref:`search` diff --git a/etc/bastion/bastion.conf.dist b/etc/bastion/bastion.conf.dist index 4884bfb..c10de82 100644 --- a/etc/bastion/bastion.conf.dist +++ b/etc/bastion/bastion.conf.dist @@ -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/" } diff --git a/lib/perl/OVH/Bastion/configuration.inc b/lib/perl/OVH/Bastion/configuration.inc index 48bc6b9..643cd4d 100644 --- a/lib/perl/OVH/Bastion/configuration.inc +++ b/lib/perl/OVH/Bastion/configuration.inc @@ -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) {