From 290052f4daf741347c36f48da149a4f690cded5f Mon Sep 17 00:00:00 2001 From: aazam Date: Fri, 21 Jun 2024 16:33:21 +0300 Subject: [PATCH] updated sles webserver docs Signed-off-by: aazam --- doc/source/setuphttpd.rst | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/doc/source/setuphttpd.rst b/doc/source/setuphttpd.rst index 917b046f6..35cd31a5d 100644 --- a/doc/source/setuphttpd.rst +++ b/doc/source/setuphttpd.rst @@ -33,8 +33,8 @@ The last section of this chapter details about using tokens to enhance security. ====================== ================= ================= ================= Tested RHEL 9.4 SLES 15.5 Ubuntu 24.04 ====================== ================= ================= ================= -Apache2 + uwsgi ✓ -Apache2 + mod_wsgi ✓ +Apache2 + uwsgi ✓ ✓ +Apache2 + mod_wsgi ✓ ✓ ✓ nginx + uwsgi ====================== ================= ================= ================= @@ -45,7 +45,7 @@ Redhat Enterprise Linux ----------------------- The following instructions are for RHEL 9.4. -The RPM packages can be downloaded from (to be determined). +The RPM packages can be downloaded from https://download.opensuse.org/repositories/Virtualization:/feilong/AlmaLinux_9/ Before installing the necessary packages, it is important to set up the EPEL repository. **Important:** Ensure that the EPEL repository is enabled to access additional packages. @@ -82,7 +82,33 @@ To change that, you need to modify both Apache configuration and firewall rules. SUSE Linux Enterprise Server ---------------------------- -(to be written). +The following instructions are for SLES15 SP5. +The RPM packages can be downloaded from https://download.opensuse.org/repositories/Virtualization:/feilong/SLE_15_SP5/ + + + +Install the downloaded packages using the `zypper` command + +..code-block:: text + + # zypper install zthin--.s390x.rpm + # zypper install zvmsdk--.noarch.rpm + +If not already done, enable the automatic startup of the Apache server, and then start it: + +..code-block:: text + + # systemctl enable apache2 + # systemctl start apache2 + +Finally, you can verify if the installation works as intended by making a curl request from your workstation + +..code-block:: text + + $ curl http://:8080/ + +By default, Feilong will listen on port 8080. +To change that, you need to modify both Apache configuration and firewall rules. Ubuntu ------