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
}

관련 정보