xinetd apache2-proxy サービスは利用できません

xinetd apache2-proxy サービスは利用できません

ファイル共有サービスを使用していますF*EX フロント*外部。 aなしでサービスを実行すると、proxyそのサービスにアクセスして機能します。このサービスはによって制御されますxinetd。これで、apache2プロキシとして実行され、リダイレクトされるように設定されていますが、port 443サービスにアクセスできません。 xinetdからエラーメッセージ、またはapache2からエラーメッセージが受信されません。

出力netstat -tulpnq

tcp  0  0 127.0.0.1:9988    0.0.0.0:*    LISTEN      15302/xinetd

Apache2設定ファイルhttp:

<VirtualHost *:80>
    ServerName fex.myserver.de
    Redirect / https://fex.myserver.de
</VirtualHost>

Apache2設定ファイルhttp:

<IfModule mod_ssl.c>
<VirtualHost *:443>

ServerName fex.myserver.de
ProxyPass / http://127.0.0.1:9988/
ProxyPreserveHost On

    DocumentRoot /home/fex
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /home/fex/htdocs/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    *SSL OPTIONS GO HERE*
    ErrorLog ${APACHE_LOG_DIR}/error.log

</VirtualHost>
</IfModule>

xinetd.d/fex :

# default: on
# description: F*EX web server
#
service fex
{
    socket_type             = stream
    log_type                = FILE /var/log/xinetd
    log_on_success          = PID HOST EXIT DURATION
    log_on_failure          = PID HOST EXIT DURATION
    wait                    = no
    type                    = unlisted
    protocol                = tcp
    bind                    = 127.0.0.1
    port                    = 9988
    cps                     = 10 2
    user                    = fex
    groups                  = yes
    server                  = /home/fex/bin/fexsrv
    nice                    = 0
    disable                 = no
}

ベストアンサー1

おすすめ記事