Apache

リバースプロクシの設定方法

変更前。 (この設定ファイルは Windows 版 Apache) <IfModule mod_proxy.c> ProxyRequests Off <Proxy *> Require all granted </Proxy> </IfModule> 変更後。 <IfModule mod_proxy.c> ProxyRequests Off <Proxy http://localhost:5000/> Require all granted </Proxy> ProxyPass / http://localhost:5000/ ProxyPassReverse / http://localho…</ifmodule>

Gentoo に Apache2 をインストールする

% sudo emerge apache % sudo rc-update show | grep apache2 % sudo rc-update add apache2 default % sudo /etc/init.d/apache2 start # apache2 -t -D DUMP_MODULES Loaded Modules: core_module (static) mpm_prefork_module (static) http_module (stat…

NameVirtualHost *:0 has no VirtualHosts failed!

下記のコマンドで原因を確認をする。 % sudo /usr/sbin/apache2 -S

Apache の SSL 接続を有効にする 02

モジュールを確認する。 % apt-cache search apache | grep ssl apache-ssl - versatile, high-performance HTTP server with SSL support libapache-mod-ssl - Strong cryptography (HTTPS support) for Apache libapache-mod-ssl-doc - Documentation for …

Apache の SSL 接続を有効にする 01

openssl のインストール % sudo apt-get install openssl % sudo apt-get install ssl-cert openssl の設定 % ls -l /etc/ssl/ total 24 drwxr-xr-x 2 root root 8192 Dec 23 18:46 certs -rw-r--r-- 1 root root 9374 May 8 2008 openssl.cnf drwx------ 2 …