在 RHEL Linux 上配置 Apache
此示例介绍如何在 RHEL Linux 上将 Apache 配置为已在端口 8080 上运行的 Codebeamer 实例的反向代理。该过程包括安装支持 SSL 的 Apache、复制配置和证书文件以及重新启动 Apache 服务。为了确保正常连接,还提供了故障排除步骤和 SELinux 配置。
#sudo dnf install httpd -y
#sudo dnf install httpd mod_ssl

Assuming codebeamer is already installed and running on port 8080, copy http.conf and https.conf attached to /etc/httpd/conf.d directory.
Copy the pem certs above to /etc/httpd/certs directory.

Then restart apache with
#sudo systemctl restart httpd
对于故障排除:
Check error status:
#systemctl status httpd.service
SELinux 配置:
Allow selinux httpd:
#sudo setsebool -P httpd_can_network_connect 1
这对您有帮助吗?