Ferro's Gitbook
  • README
  • DevOps
    • Grafana_Cloud
  • OpenWrt
    • DHCP_DNS
    • GLiNet
    • boot
    • captive_portal
    • luci
    • mwan3
    • radius
    • theme
    • wireless
  • apps
    • web
  • BSD
    • Mac
  • Cloud
    • aws
    • azure
    • cf
    • gcp
    • github
    • ibm_bluemix
    • Pricing
  • container
    • docker
    • Kubernetes
    • podman
  • db
    • InfluxDB
    • loki
    • MySQL & MariaDB
    • Oracle
    • PostgreSQL
  • dev
    • AHK
    • BI
    • LBS
    • ML
    • android
    • editor
    • flutter_web
    • git
    • go
    • HTML5/BS
    • j2ee
    • js
    • js_grid
    • js_vue
    • jupyter
    • ocaml
    • powershell
    • py
    • py_GUI
    • Django
    • shell
    • snippets
    • uni
    • vba
    • wechat.zh
    • wechat_mp.zh
  • elec
    • 3D Printing
    • AC
    • MOSFET
    • battery
    • boost
    • bulk
    • metal
    • simulator
  • hw
    • GPU
    • PCI
    • arduino
    • Bluetooth
    • ent
    • Pinout
    • x86_AMD
    • x86_intel
  • linux
    • Test System
    • X
    • arch
    • fs
    • kernel
    • Memory
    • nw
    • Linux Services
    • Systemd
    • text
  • ms
    • vscode
    • windows
    • wsl
  • multimedia
    • Blender
    • audio
    • blender
    • graphics
    • home
  • nw
    • L3
    • L3_IPv6
    • SDN
    • VPN
    • dns
    • hw
    • Low Level
    • mikrotik
    • mwan
    • Openflow
    • OVS
    • pfsense
    • ppp
    • proxy
    • tsocks
    • pxe
    • Security
    • TCP
  • phone
    • Mi
    • android
  • Storage(SW)
  • vt
    • Intel GVT-g
    • PVE
    • QEMU
    • VDI
    • hyper-v
    • kube
    • libvirt
    • OpenStack
  • Web
    • IBM_MQ
    • IBM_Websphere
    • SSL
    • Apache/IBM_IHS
    • blockchain
    • caddy
    • j2ee
    • nginx
    • static_site
Powered by GitBook
On this page
  • httpd.conf
  • VirtualHost
  • a2enmod
  • mod_ssl
  • mod_proxy
  • ProxyPass
  • IBM IHS
  • Docker
  • Windows

Was this helpful?

Edit on Git
  1. Web

Apache/IBM_IHS

PreviousSSLNextblockchain

Last updated 2 years ago

Was this helpful?

httpd.conf

Options +Indexes
AddDefaultCharset utf-8

VirtualHost

IndexOptions FancyIndexing VersionSort NameWidth=*

a2enmod

a2enmod ssl

mod_ssl

SSLProxyEngine: https://httpd.apache.org/docs/2.4/mod/mod_ssl.html#sslproxyengine

mod_proxy

ProxyPreserveHost: https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#proxypreservehost

ProxyPass

https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#proxypass https://httpd.apache.org/docs/2.4/howto/reverse_proxy.html

for m in proxy proxy_http proxy_balancer lbmethod_byrequests; do a2enmod $m; echo ----; done
systemctl restart apache2; systemctl status apache2

ProxyPass /tsadmin http://localhost:8000/
ProxyPassReverse /tsadmin  http://localhost:8000/

IBM IHS

Docker

https://hub.docker.com/r/ibmcom/ibm-http-server

docker run --name ibm-http-server -h IHS \
-d --restart unless-stopped \
--net host -v /:/host \
ibmcom/ibm-http-server  

Windows

httpd.exe -k install -n "IBM HTTP Server V9.0"
# Fixed name to address error:
# The system cannot find the file specified.  : AH00436: No installed service named "IBM HTTP Server V9.0".
apache.exe -k start
httpd.conf
VirtualHost
a2enmod
mod_ssl
mod_proxy
ProxyPass
IBM IHS
Docker
Windows