diff --git a/latest/_sources/customizations.rst.txt b/latest/_sources/customizations.rst.txt index 059effcb..13f2b832 100644 --- a/latest/_sources/customizations.rst.txt +++ b/latest/_sources/customizations.rst.txt @@ -277,10 +277,57 @@ Start by creating the file - Additionally project scratch directories have a 'title' attribute and will with in the dropdown with both the title and the path. -On each request, the Dashboard will check for the existence of the directories -in ``OodFilesApp.candidate_favorite_paths`` array and whichever directories -exist and the user has access to will appear as links in the Files menu under -the Home Directory link. +The following example adds all directories within the specified base directories to the favorite paths. This approach is ideal when there is no specific directory naming logic to follow. It also appropriately handles Access Control Lists (ACLs). If a directory does not exist, no error is raised, making this configuration easily exportable to different clusters. + + +.. code-block:: ruby + + # /etc/ood/config/apps/dashboard/initializers/ood.rb + + Rails.application.config.after_initialize do + OodFilesApp.candidate_favorite_paths.tap do |paths| + + # Hash of base paths to check for additional directories with titles + # location => Title + base_paths = { + '/home/share/' => 'Shared home', + '/srv/scratch/shares/' => 'Shared scratch', + '/srv/scratch/groups/' => 'Group scratch', + '/srv/fast/users/' => 'Fast user' + # Add more paths and titles here if needed + } + + base_paths.each do |base_path, title| + # Check if the base path exists and is a directory, to avoid error + next unless Dir.exist?(base_path) + + # Get all entries in the current base path + Dir.entries(base_path).each do |entry| + # Construct the full path for the current entry + full_path = File.join(base_path, entry) + + # Skip if it's not a directory or if it's a special entry like '.' or '..' + next unless File.directory?(full_path) && !['.', '..'].include?(entry) + + # Check if the directory is readable and executable + if File.readable?(full_path) && File.executable?(full_path) + # Access the value of the current base_path using the `title` variable + paths << FavoritePath.new(full_path, title: "#{title}: #{File.basename(full_path)}") + end + end + end + end + end + + # The variable ``base_paths`` is an hash (``dirname`` => ``Title``) of all directories you want to parse. For the directory ``OSC_test`` in ``/srv/scratch/groups/``; the favorite path will be displayed as following + + | Group scratch: OSC_test | /srv/scratch/groups/OSC_test | + + On each request, the Dashboard will check for the existence of the directories + in ``OodFilesApp.candidate_favorite_paths`` array and whichever directories + exist and the user has access to will appear as links in the Files menu under + the Home Directory link. + .. figure:: /images/files_menu_shortcuts_osc.png :align: center diff --git a/latest/_sources/index.rst.txt b/latest/_sources/index.rst.txt index f50398c3..4c62a6c7 100644 --- a/latest/_sources/index.rst.txt +++ b/latest/_sources/index.rst.txt @@ -81,9 +81,10 @@ These are institutions who were early adopters or provided HPC resources for dev architecture reference + security release-notes version-policy - glossary + glossary .. _website: https://openondemand.org/ .. _bowdoin: https://www.bowdoin.edu/it/resources/high-performance-computing.html diff --git a/latest/_sources/security.rst.txt b/latest/_sources/security.rst.txt new file mode 100644 index 00000000..a8bce0d6 --- /dev/null +++ b/latest/_sources/security.rst.txt @@ -0,0 +1,50 @@ +.. _security: + +Security +======== + +Introduction +------------ +This document details the security framework for Open OnDemand, providing essential information that administrators need to know for secure deployment and operation. + +Considerations +-------------- +This section outlines key security advantages and areas for vigilance within the Open OnDemand environment. + +Advantages +^^^^^^^^^^ + +- **Per-user Nginx (PUN) Architecture**: By running individual Nginx instances per user, Open OnDemand ensures that actions such as file access are conducted under user-specific non-root privileges, which isolates processes and enhances security. + +- **Robust Authentication**: Open OnDemand supports various authentication methods. It particularly emphasizes secure protocols over less secure options like Basic or LDAP authentication, reinforcing its commitment to high security standards. + +Limitations +^^^^^^^^^^^ + +- **HTTP Traffic to Origin Servers**: Traffic to backend services, including computational resources like Jupyter servers, is currently over HTTP, which is unencrypted. Plans are underway to upgrade this to HTTPS to ensure encryption of data in transit, thereby bolstering security. + +Security Controls +----------------- + +- **Monitoring and Logging**: Comprehensive logging mechanisms are integral for security audits and incident response. Detailed guidelines and settings for these features can be found at :ref:`logging`. + +- **Vulnerability Management**: Active management of security weaknesses includes regular updates and patches. Detailed processes and current security advisories are available at :ref:`vulnerability-management`. + +- **Security Audits**: The platform undergoes periodic security audits by Trusted CI, the NSF Cybersecurity Center of Excellence. Summaries of these audits are available, with the latest report accessible `here `_. + +Conclusion +---------- +Maintaining a secure and robust operational environment is critical for the success of Open OnDemand. Administrators are encouraged to implement the security practices recommended in this guide and to regularly review security settings and updates. + + +Relevant References +------------------- + +.. toctree:: + :maxdepth: 2 + :caption: Security Topics + + security/vulnerability-management + authentication/overview + how-tos/monitoring/logging + customizations diff --git a/latest/_sources/security/vulnerability-management.rst.txt b/latest/_sources/security/vulnerability-management.rst.txt new file mode 100644 index 00000000..b23168de --- /dev/null +++ b/latest/_sources/security/vulnerability-management.rst.txt @@ -0,0 +1,42 @@ +.. _vulnerability-management: + +Vulnerability Management +======================== + +Introduction +------------ + +Vulnerability management is a critical component of the security strategy for Open OnDemand. This document outlines the procedures for reporting and managing vulnerabilities. + +Reporting a Vulnerability +------------------------- + +If you have security concerns or think you have found a vulnerability, please submit a private report by visiting the 'Security' section of our GitHub located at `GitHub Open OnDemand Security `_ and clicking 'Report a vulnerability'. + +For direct inquiries or issues in submitting a report, contact the core project team via email at security@openondemand.org. + +Disclosure Policy +----------------- + +- Upon reporting, you will receive a response within hours, acknowledging the receipt of the report. +- A primary handler from the team will be assigned to coordinate the fix and release process: +- Confirm the problem and determine the affected versions (1-2 days). +- Audit code to find any potential similar problems. +- Prepare fixes for all releases still under maintenance and release as soon as possible. + +Comments on Policy +------------------ + +Suggestions to improve this process can be made via submitting a ticket, opening a Discourse topic, or a pull request. + +Security Audits +--------------- + +Open OnDemand has been audited several times by Trusted CI, the NSF Cybersecurity Center of Excellence. The latest engagement report is available `here `__. These audits have helped shape the security landscape of the platform and contribute to its ongoing security enhancements. + +Conclusion +---------- + +Effective vulnerability management is crucial for maintaining the security and integrity of Open OnDemand. Users and contributors play a vital role in this process by reporting potential security vulnerabilities through GitHub, ensuring the platform's continued safety. + +.. note:: For details on the specific vulnerability management steps, please see the GitHub repository guidelines or the security policies linked above. diff --git a/latest/architecture.html b/latest/architecture.html index c65c57be..02d25f22 100644 --- a/latest/architecture.html +++ b/latest/architecture.html @@ -143,6 +143,7 @@
  • Configuration Reference
  • +
  • Security
  • Release Notes
  • Versioning Policy
  • Glossary
  • diff --git a/latest/authentication.html b/latest/authentication.html index 4298585d..10672bdd 100644 --- a/latest/authentication.html +++ b/latest/authentication.html @@ -145,6 +145,7 @@
    • Architecture
    • Configuration Reference
    • +
    • Security
    • Release Notes
    • Versioning Policy
    • Glossary
    • diff --git a/latest/authentication/adfs-with-auth-mellon.html b/latest/authentication/adfs-with-auth-mellon.html index d7581edb..1782acd1 100644 --- a/latest/authentication/adfs-with-auth-mellon.html +++ b/latest/authentication/adfs-with-auth-mellon.html @@ -152,6 +152,7 @@
      • Architecture
      • Configuration Reference
      • +
      • Security
      • Release Notes
      • Versioning Policy
      • Glossary
      • diff --git a/latest/authentication/cas.html b/latest/authentication/cas.html index 214b9616..e75dc2a2 100644 --- a/latest/authentication/cas.html +++ b/latest/authentication/cas.html @@ -145,6 +145,7 @@
        • Architecture
        • Configuration Reference
        • +
        • Security
        • Release Notes
        • Versioning Policy
        • Glossary
        • diff --git a/latest/authentication/dex.html b/latest/authentication/dex.html index 19c239c6..5ce85a51 100644 --- a/latest/authentication/dex.html +++ b/latest/authentication/dex.html @@ -157,6 +157,7 @@
          • Architecture
          • Configuration Reference
          • +
          • Security
          • Release Notes
          • Versioning Policy
          • Glossary
          • diff --git a/latest/authentication/duo-2fa-with-keycloak.html b/latest/authentication/duo-2fa-with-keycloak.html index e31bb082..f7b080cd 100644 --- a/latest/authentication/duo-2fa-with-keycloak.html +++ b/latest/authentication/duo-2fa-with-keycloak.html @@ -149,6 +149,7 @@
            • Architecture
            • Configuration Reference
            • +
            • Security
            • Release Notes
            • Versioning Policy
            • Glossary
            • diff --git a/latest/authentication/insecure.html b/latest/authentication/insecure.html index 4c074376..3d5895fb 100644 --- a/latest/authentication/insecure.html +++ b/latest/authentication/insecure.html @@ -145,6 +145,7 @@
              • Architecture
              • Configuration Reference
              • +
              • Security
              • Release Notes
              • Versioning Policy
              • Glossary
              • diff --git a/latest/authentication/nsf-access.html b/latest/authentication/nsf-access.html index a7aaa02b..ba9e17e1 100644 --- a/latest/authentication/nsf-access.html +++ b/latest/authentication/nsf-access.html @@ -150,6 +150,7 @@
                • Architecture
                • Configuration Reference
                • +
                • Security
                • Release Notes
                • Versioning Policy
                • Glossary
                • diff --git a/latest/authentication/oidc.html b/latest/authentication/oidc.html index c21ecb12..c49c21cf 100644 --- a/latest/authentication/oidc.html +++ b/latest/authentication/oidc.html @@ -145,6 +145,7 @@
                  • Architecture
                  • Configuration Reference
                  • +
                  • Security
                  • Release Notes
                  • Versioning Policy
                  • Glossary
                  • diff --git a/latest/authentication/overview.html b/latest/authentication/overview.html index 8b91934f..99257446 100644 --- a/latest/authentication/overview.html +++ b/latest/authentication/overview.html @@ -102,33 +102,9 @@

                    Getting Started

                    -

                    Reference

                    -
                      +
                      • Architecture
                      • Configuration Reference
                      • +
                      • Security +
                      • Release Notes
                      • Versioning Policy
                      • Glossary
                      • diff --git a/latest/authentication/overview/configure-authentication.html b/latest/authentication/overview/configure-authentication.html index ca3c69ae..aa76dc3c 100644 --- a/latest/authentication/overview/configure-authentication.html +++ b/latest/authentication/overview/configure-authentication.html @@ -102,33 +102,9 @@

                        Getting Started

                        -

                        Reference

                        -
                          +
                          • Architecture
                          • Configuration Reference
                          • +
                          • Security +
                          • Release Notes
                          • Versioning Policy
                          • Glossary
                          • diff --git a/latest/authentication/overview/configure-logout.html b/latest/authentication/overview/configure-logout.html index d12c3830..798c64fa 100644 --- a/latest/authentication/overview/configure-logout.html +++ b/latest/authentication/overview/configure-logout.html @@ -102,33 +102,9 @@

                            Getting Started

                            -

                            Reference

                            -
                              +
                              • Architecture
                              • Configuration Reference
                              • +
                              • Security +
                              • Release Notes
                              • Versioning Policy
                              • Glossary
                              • diff --git a/latest/authentication/overview/map-user.html b/latest/authentication/overview/map-user.html index 44922be4..82e0cdba 100644 --- a/latest/authentication/overview/map-user.html +++ b/latest/authentication/overview/map-user.html @@ -102,33 +102,9 @@

                                Getting Started

                                -

                                Reference

                                -
                                  +
                                  • Architecture
                                  • Configuration Reference
                                  • +
                                  • Security +
                                  • Release Notes
                                  • Versioning Policy
                                  • Glossary
                                  • diff --git a/latest/authentication/shibboleth.html b/latest/authentication/shibboleth.html index 7bed13f0..c9b65d59 100644 --- a/latest/authentication/shibboleth.html +++ b/latest/authentication/shibboleth.html @@ -145,6 +145,7 @@
                                    • Architecture
                                    • Configuration Reference
                                    • +
                                    • Security
                                    • Release Notes
                                    • Versioning Policy
                                    • Glossary
                                    • diff --git a/latest/authentication/tutorial-oidc-keycloak-rhel7.html b/latest/authentication/tutorial-oidc-keycloak-rhel7.html index 39ec0b72..303ef2bb 100644 --- a/latest/authentication/tutorial-oidc-keycloak-rhel7.html +++ b/latest/authentication/tutorial-oidc-keycloak-rhel7.html @@ -152,6 +152,7 @@
                                      • Architecture
                                      • Configuration Reference
                                      • +
                                      • Security
                                      • Release Notes
                                      • Versioning Policy
                                      • Glossary
                                      • diff --git a/latest/authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme.html b/latest/authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme.html index 712f053d..8de796a9 100644 --- a/latest/authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme.html +++ b/latest/authentication/tutorial-oidc-keycloak-rhel7/add-custom-theme.html @@ -152,6 +152,7 @@
                                        • Architecture
                                        • Configuration Reference
                                        • +
                                        • Security
                                        • Release Notes
                                        • Versioning Policy
                                        • Glossary
                                        • diff --git a/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon.html b/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon.html index b3a7d7be..111dd151 100644 --- a/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon.html +++ b/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-cilogon.html @@ -152,6 +152,7 @@
                                          • Architecture
                                          • Configuration Reference
                                          • +
                                          • Security
                                          • Release Notes
                                          • Versioning Policy
                                          • Glossary
                                          • diff --git a/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui.html b/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui.html index 9ae6c79d..bb4e0daa 100644 --- a/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui.html +++ b/latest/authentication/tutorial-oidc-keycloak-rhel7/configure-keycloak-webui.html @@ -152,6 +152,7 @@
                                            • Architecture
                                            • Configuration Reference
                                            • +
                                            • Security
                                            • Release Notes
                                            • Versioning Policy
                                            • Glossary
                                            • diff --git a/latest/authentication/tutorial-oidc-keycloak-rhel7/install-keycloak.html b/latest/authentication/tutorial-oidc-keycloak-rhel7/install-keycloak.html index 8a6db0a7..2666a65d 100644 --- a/latest/authentication/tutorial-oidc-keycloak-rhel7/install-keycloak.html +++ b/latest/authentication/tutorial-oidc-keycloak-rhel7/install-keycloak.html @@ -152,6 +152,7 @@
                                              • Architecture
                                              • Configuration Reference
                                              • +
                                              • Security
                                              • Release Notes
                                              • Versioning Policy
                                              • Glossary
                                              • diff --git a/latest/authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc.html b/latest/authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc.html index 6614fc21..2243fdda 100644 --- a/latest/authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc.html +++ b/latest/authentication/tutorial-oidc-keycloak-rhel7/install_mod_auth_openidc.html @@ -152,6 +152,7 @@

                                                Reference

                                                -
                                                  + -

                                                  On each request, the Dashboard will check for the existence of the directories -in OodFilesApp.candidate_favorite_paths array and whichever directories -exist and the user has access to will appear as links in the Files menu under -the Home Directory link.

                                                  +

                                                  The following example adds all directories within the specified base directories to the favorite paths. This approach is ideal when there is no specific directory naming logic to follow. It also appropriately handles Access Control Lists (ACLs). If a directory does not exist, no error is raised, making this configuration easily exportable to different clusters.

                                                  +
                                                  # /etc/ood/config/apps/dashboard/initializers/ood.rb
                                                  +
                                                  +Rails.application.config.after_initialize do
                                                  +  OodFilesApp.candidate_favorite_paths.tap do |paths|
                                                  +
                                                  +    # Hash of base paths to check for additional directories with titles
                                                  +    # location => Title
                                                  +    base_paths = {
                                                  +      '/home/share/' => 'Shared home',
                                                  +      '/srv/scratch/shares/' => 'Shared scratch',
                                                  +      '/srv/scratch/groups/' => 'Group scratch',
                                                  +      '/srv/fast/users/' => 'Fast user'
                                                  +      # Add more paths and titles here if needed
                                                  +    }
                                                  +
                                                  +    base_paths.each do |base_path, title|
                                                  +      # Check if the base path exists and is a directory, to avoid error
                                                  +      next unless Dir.exist?(base_path)
                                                  +
                                                  +      # Get all entries in the current base path
                                                  +      Dir.entries(base_path).each do |entry|
                                                  +        # Construct the full path for the current entry
                                                  +        full_path = File.join(base_path, entry)
                                                  +
                                                  +        # Skip if it's not a directory or if it's a special entry like '.' or '..'
                                                  +        next unless File.directory?(full_path) && !['.', '..'].include?(entry)
                                                  +
                                                  +        # Check if the directory is readable and executable
                                                  +        if File.readable?(full_path) && File.executable?(full_path)
                                                  +          # Access the value of the current base_path using the `title` variable
                                                  +          paths << FavoritePath.new(full_path, title: "#{title}: #{File.basename(full_path)}")
                                                  +        end
                                                  +      end
                                                  +    end
                                                  +  end
                                                  +end
                                                  +
                                                  +# The variable ``base_paths`` is an hash (``dirname`` => ``Title``) of all directories you want to parse. For the directory ``OSC_test`` in ``/srv/scratch/groups/``; the favorite path will be displayed as following
                                                  +
                                                  +| Group scratch: OSC_test | /srv/scratch/groups/OSC_test |
                                                  +
                                                  +On each request, the Dashboard will check for the existence of the directories
                                                  +in ``OodFilesApp.candidate_favorite_paths`` array and whichever directories
                                                  +exist and the user has access to will appear as links in the Files menu under
                                                  +the Home Directory link.
                                                  +
                                                  +
                                                  _images/files_menu_shortcuts_osc.png

                                                  Fig. 4 Shortcuts to scratch and project space directories in Files menu in OSC OnDemand.

                                                  diff --git a/latest/enable-desktops.html b/latest/enable-desktops.html index cbc34e44..ed467692 100644 --- a/latest/enable-desktops.html +++ b/latest/enable-desktops.html @@ -132,6 +132,7 @@
                                                  • Architecture
                                                  • Configuration Reference
                                                  • +
                                                  • Security
                                                  • Release Notes
                                                  • Versioning Policy
                                                  • Glossary
                                                  • diff --git a/latest/enable-desktops/add-cluster.html b/latest/enable-desktops/add-cluster.html index b1c07b59..d697d844 100644 --- a/latest/enable-desktops/add-cluster.html +++ b/latest/enable-desktops/add-cluster.html @@ -132,6 +132,7 @@
                                                    • Architecture
                                                    • Configuration Reference
                                                    • +
                                                    • Security
                                                    • Release Notes
                                                    • Versioning Policy
                                                    • Glossary
                                                    • diff --git a/latest/enable-desktops/custom-job-submission.html b/latest/enable-desktops/custom-job-submission.html index 97f44492..53f87cce 100644 --- a/latest/enable-desktops/custom-job-submission.html +++ b/latest/enable-desktops/custom-job-submission.html @@ -138,6 +138,7 @@
                                                      • Architecture
                                                      • Configuration Reference
                                                      • +
                                                      • Security
                                                      • Release Notes
                                                      • Versioning Policy
                                                      • Glossary
                                                      • diff --git a/latest/enable-desktops/modify-form-attributes.html b/latest/enable-desktops/modify-form-attributes.html index 1fc5f846..104c727f 100644 --- a/latest/enable-desktops/modify-form-attributes.html +++ b/latest/enable-desktops/modify-form-attributes.html @@ -141,6 +141,7 @@
                                                        • Architecture
                                                        • Configuration Reference
                                                        • +
                                                        • Security
                                                        • Release Notes
                                                        • Versioning Policy
                                                        • Glossary
                                                        • diff --git a/latest/enable-desktops/software-requirements.html b/latest/enable-desktops/software-requirements.html index aa7faf14..2c7d4c67 100644 --- a/latest/enable-desktops/software-requirements.html +++ b/latest/enable-desktops/software-requirements.html @@ -132,6 +132,7 @@
                                                          • Architecture
                                                          • Configuration Reference
                                                          • +
                                                          • Security
                                                          • Release Notes
                                                          • Versioning Policy
                                                          • Glossary
                                                          • diff --git a/latest/genindex.html b/latest/genindex.html index a68af775..ae810d4c 100644 --- a/latest/genindex.html +++ b/latest/genindex.html @@ -126,6 +126,7 @@
                                                            • Architecture
                                                            • Configuration Reference
                                                            • +
                                                            • Security
                                                            • Release Notes
                                                            • Versioning Policy
                                                            • Glossary
                                                            • diff --git a/latest/glossary.html b/latest/glossary.html index 7b0fd703..7df45217 100644 --- a/latest/glossary.html +++ b/latest/glossary.html @@ -125,6 +125,7 @@
                                                              • Architecture
                                                              • Configuration Reference
                                                              • +
                                                              • Security
                                                              • Release Notes
                                                              • Versioning Policy
                                                              • Glossary
                                                              • diff --git a/latest/how-tos/analytics/google-analytics.html b/latest/how-tos/analytics/google-analytics.html index 0df8cf57..35688e7b 100644 --- a/latest/how-tos/analytics/google-analytics.html +++ b/latest/how-tos/analytics/google-analytics.html @@ -138,6 +138,7 @@
                                                                • Architecture
                                                                • Configuration Reference
                                                                • +
                                                                • Security
                                                                • Release Notes
                                                                • Versioning Policy
                                                                • Glossary
                                                                • diff --git a/latest/how-tos/app-development.html b/latest/how-tos/app-development.html index 87225895..141aca6e 100644 --- a/latest/how-tos/app-development.html +++ b/latest/how-tos/app-development.html @@ -131,6 +131,7 @@
                                                                  • Architecture
                                                                  • Configuration Reference
                                                                  • +
                                                                  • Security
                                                                  • Release Notes
                                                                  • Versioning Policy
                                                                  • Glossary
                                                                  • diff --git a/latest/how-tos/app-development/app-sharing.html b/latest/how-tos/app-development/app-sharing.html index 88b4b221..8784282f 100644 --- a/latest/how-tos/app-development/app-sharing.html +++ b/latest/how-tos/app-development/app-sharing.html @@ -145,6 +145,7 @@
                                                                    • Architecture
                                                                    • Configuration Reference
                                                                    • +
                                                                    • Security
                                                                    • Release Notes
                                                                    • Versioning Policy
                                                                    • Glossary
                                                                    • diff --git a/latest/how-tos/app-development/enabling-development-mode.html b/latest/how-tos/app-development/enabling-development-mode.html index 75c572fc..dde2b3a3 100644 --- a/latest/how-tos/app-development/enabling-development-mode.html +++ b/latest/how-tos/app-development/enabling-development-mode.html @@ -138,6 +138,7 @@
                                                                      • Architecture
                                                                      • Configuration Reference
                                                                      • +
                                                                      • Security
                                                                      • Release Notes
                                                                      • Versioning Policy
                                                                      • Glossary
                                                                      • diff --git a/latest/how-tos/app-development/interactive.html b/latest/how-tos/app-development/interactive.html index 0cac4477..77e68804 100644 --- a/latest/how-tos/app-development/interactive.html +++ b/latest/how-tos/app-development/interactive.html @@ -143,6 +143,7 @@
                                                                        • Architecture
                                                                        • Configuration Reference
                                                                        • +
                                                                        • Security
                                                                        • Release Notes
                                                                        • Versioning Policy
                                                                        • Glossary
                                                                        • diff --git a/latest/how-tos/app-development/interactive/additional-info.html b/latest/how-tos/app-development/interactive/additional-info.html index 71ac1e45..98f98277 100644 --- a/latest/how-tos/app-development/interactive/additional-info.html +++ b/latest/how-tos/app-development/interactive/additional-info.html @@ -147,6 +147,7 @@
                                                                          • Architecture
                                                                          • Configuration Reference
                                                                          • +
                                                                          • Security
                                                                          • Release Notes
                                                                          • Versioning Policy
                                                                          • Glossary
                                                                          • diff --git a/latest/how-tos/app-development/interactive/conn-params.html b/latest/how-tos/app-development/interactive/conn-params.html index e8c3dbed..e816be47 100644 --- a/latest/how-tos/app-development/interactive/conn-params.html +++ b/latest/how-tos/app-development/interactive/conn-params.html @@ -147,6 +147,7 @@
                                                                            • Architecture
                                                                            • Configuration Reference
                                                                            • +
                                                                            • Security
                                                                            • Release Notes
                                                                            • Versioning Policy
                                                                            • Glossary
                                                                            • diff --git a/latest/how-tos/app-development/interactive/dynamic-form-widgets.html b/latest/how-tos/app-development/interactive/dynamic-form-widgets.html index 0a873c66..66dfd8a4 100644 --- a/latest/how-tos/app-development/interactive/dynamic-form-widgets.html +++ b/latest/how-tos/app-development/interactive/dynamic-form-widgets.html @@ -150,6 +150,7 @@
                                                                              • Architecture
                                                                              • Configuration Reference
                                                                              • +
                                                                              • Security
                                                                              • Release Notes
                                                                              • Versioning Policy
                                                                              • Glossary
                                                                              • diff --git a/latest/how-tos/app-development/interactive/form-widgets.html b/latest/how-tos/app-development/interactive/form-widgets.html index d627e1a0..90f7a4d0 100644 --- a/latest/how-tos/app-development/interactive/form-widgets.html +++ b/latest/how-tos/app-development/interactive/form-widgets.html @@ -143,6 +143,7 @@
                                                                                • Architecture
                                                                                • Configuration Reference
                                                                                • +
                                                                                • Security
                                                                                • Release Notes
                                                                                • Versioning Policy
                                                                                • Glossary
                                                                                • diff --git a/latest/how-tos/app-development/interactive/form.html b/latest/how-tos/app-development/interactive/form.html index d43deff5..8a792370 100644 --- a/latest/how-tos/app-development/interactive/form.html +++ b/latest/how-tos/app-development/interactive/form.html @@ -149,6 +149,7 @@
                                                                                  • Architecture
                                                                                  • Configuration Reference
                                                                                  • +
                                                                                  • Security
                                                                                  • Release Notes
                                                                                  • Versioning Policy
                                                                                  • Glossary
                                                                                  • diff --git a/latest/how-tos/app-development/interactive/manifest.html b/latest/how-tos/app-development/interactive/manifest.html index 1c31bb1d..c468ef36 100644 --- a/latest/how-tos/app-development/interactive/manifest.html +++ b/latest/how-tos/app-development/interactive/manifest.html @@ -143,6 +143,7 @@
                                                                                    • Architecture
                                                                                    • Configuration Reference
                                                                                    • +
                                                                                    • Security
                                                                                    • Release Notes
                                                                                    • Versioning Policy
                                                                                    • Glossary
                                                                                    • diff --git a/latest/how-tos/app-development/interactive/setup.html b/latest/how-tos/app-development/interactive/setup.html index 28d6e39e..c3fd55f5 100644 --- a/latest/how-tos/app-development/interactive/setup.html +++ b/latest/how-tos/app-development/interactive/setup.html @@ -131,6 +131,7 @@
                                                                                      • Architecture
                                                                                      • Configuration Reference
                                                                                      • +
                                                                                      • Security
                                                                                      • Release Notes
                                                                                      • Versioning Policy
                                                                                      • Glossary
                                                                                      • diff --git a/latest/how-tos/app-development/interactive/setup/enable-reverse-proxy.html b/latest/how-tos/app-development/interactive/setup/enable-reverse-proxy.html index b226607e..983ec767 100644 --- a/latest/how-tos/app-development/interactive/setup/enable-reverse-proxy.html +++ b/latest/how-tos/app-development/interactive/setup/enable-reverse-proxy.html @@ -136,6 +136,7 @@
                                                                                        • Architecture
                                                                                        • Configuration Reference
                                                                                        • +
                                                                                        • Security
                                                                                        • Release Notes
                                                                                        • Versioning Policy
                                                                                        • Glossary
                                                                                        • diff --git a/latest/how-tos/app-development/interactive/setup/modify-cluster-configuration.html b/latest/how-tos/app-development/interactive/setup/modify-cluster-configuration.html index 48c72964..5673fe1f 100644 --- a/latest/how-tos/app-development/interactive/setup/modify-cluster-configuration.html +++ b/latest/how-tos/app-development/interactive/setup/modify-cluster-configuration.html @@ -131,6 +131,7 @@
                                                                                          • Architecture
                                                                                          • Configuration Reference
                                                                                          • +
                                                                                          • Security
                                                                                          • Release Notes
                                                                                          • Versioning Policy
                                                                                          • Glossary
                                                                                          • diff --git a/latest/how-tos/app-development/interactive/setup/software-requirements.html b/latest/how-tos/app-development/interactive/setup/software-requirements.html index 08e9bc08..5e34aecb 100644 --- a/latest/how-tos/app-development/interactive/setup/software-requirements.html +++ b/latest/how-tos/app-development/interactive/setup/software-requirements.html @@ -131,6 +131,7 @@
                                                                                            • Architecture
                                                                                            • Configuration Reference
                                                                                            • +
                                                                                            • Security
                                                                                            • Release Notes
                                                                                            • Versioning Policy
                                                                                            • Glossary
                                                                                            • diff --git a/latest/how-tos/app-development/interactive/sub-apps.html b/latest/how-tos/app-development/interactive/sub-apps.html index 5ca2ff1f..172879c2 100644 --- a/latest/how-tos/app-development/interactive/sub-apps.html +++ b/latest/how-tos/app-development/interactive/sub-apps.html @@ -146,6 +146,7 @@
                                                                                              • Architecture
                                                                                              • Configuration Reference
                                                                                              • +
                                                                                              • Security
                                                                                              • Release Notes
                                                                                              • Versioning Policy
                                                                                              • Glossary
                                                                                              • diff --git a/latest/how-tos/app-development/interactive/submit.html b/latest/how-tos/app-development/interactive/submit.html index 6201cdc0..bfabd4e4 100644 --- a/latest/how-tos/app-development/interactive/submit.html +++ b/latest/how-tos/app-development/interactive/submit.html @@ -148,6 +148,7 @@
                                                                                                • Architecture
                                                                                                • Configuration Reference
                                                                                                • +
                                                                                                • Security
                                                                                                • Release Notes
                                                                                                • Versioning Policy
                                                                                                • Glossary
                                                                                                • diff --git a/latest/how-tos/app-development/interactive/template.html b/latest/how-tos/app-development/interactive/template.html index 7048afc0..add75b85 100644 --- a/latest/how-tos/app-development/interactive/template.html +++ b/latest/how-tos/app-development/interactive/template.html @@ -147,6 +147,7 @@
                                                                                                  • Architecture
                                                                                                  • Configuration Reference
                                                                                                  • +
                                                                                                  • Security
                                                                                                  • Release Notes
                                                                                                  • Versioning Policy
                                                                                                  • Glossary
                                                                                                  • diff --git a/latest/how-tos/app-development/interactive/view.html b/latest/how-tos/app-development/interactive/view.html index f9a62aca..e3888055 100644 --- a/latest/how-tos/app-development/interactive/view.html +++ b/latest/how-tos/app-development/interactive/view.html @@ -150,6 +150,7 @@
                                                                                                    • Architecture
                                                                                                    • Configuration Reference
                                                                                                    • +
                                                                                                    • Security
                                                                                                    • Release Notes
                                                                                                    • Versioning Policy
                                                                                                    • Glossary
                                                                                                    • diff --git a/latest/how-tos/debug.html b/latest/how-tos/debug.html index f3369bbf..8973d39e 100644 --- a/latest/how-tos/debug.html +++ b/latest/how-tos/debug.html @@ -133,6 +133,7 @@
                                                                                                      • Architecture
                                                                                                      • Configuration Reference
                                                                                                      • +
                                                                                                      • Security
                                                                                                      • Release Notes
                                                                                                      • Versioning Policy
                                                                                                      • Glossary
                                                                                                      • diff --git a/latest/how-tos/debug/debug-apache.html b/latest/how-tos/debug/debug-apache.html index 14acce45..e8dbb2cb 100644 --- a/latest/how-tos/debug/debug-apache.html +++ b/latest/how-tos/debug/debug-apache.html @@ -140,6 +140,7 @@
                                                                                                        • Architecture
                                                                                                        • Configuration Reference
                                                                                                        • +
                                                                                                        • Security
                                                                                                        • Release Notes
                                                                                                        • Versioning Policy
                                                                                                        • Glossary
                                                                                                        • diff --git a/latest/how-tos/debug/debug-interactive-apps.html b/latest/how-tos/debug/debug-interactive-apps.html index 83d99082..335e4715 100644 --- a/latest/how-tos/debug/debug-interactive-apps.html +++ b/latest/how-tos/debug/debug-interactive-apps.html @@ -137,6 +137,7 @@

                                                                                                          How-Tos

                                                                                                          -

                                                                                                          Reference

                                                                                                          -
                                                                                                            +
                                                                                                            • Architecture
                                                                                                            • Configuration Reference
                                                                                                            • +
                                                                                                            • Security +
                                                                                                            • Release Notes
                                                                                                            • Versioning Policy
                                                                                                            • Glossary
                                                                                                            • diff --git a/latest/how-tos/monitoring/prometheus.html b/latest/how-tos/monitoring/prometheus.html index d360caaf..a5b2387a 100644 --- a/latest/how-tos/monitoring/prometheus.html +++ b/latest/how-tos/monitoring/prometheus.html @@ -142,6 +142,7 @@
                                                                                                              • Architecture
                                                                                                              • Configuration Reference
                                                                                                              • +
                                                                                                              • Security
                                                                                                              • Release Notes
                                                                                                              • Versioning Policy
                                                                                                              • Glossary
                                                                                                              • diff --git a/latest/http-routingtable.html b/latest/http-routingtable.html index 78d12067..af7f7658 100644 --- a/latest/http-routingtable.html +++ b/latest/http-routingtable.html @@ -132,6 +132,7 @@ +
                                                                                                              • Security
                                                                                                              • Release Notes
                                                                                                              • Versioning Policy
                                                                                                              • Glossary
                                                                                                              • @@ -275,7 +276,7 @@