Visualizzazione dei risultati da 1 a 4 su 4
  1. #1

    Cambiare un virtual host non sicuro in uno sicuro

    Ho da fare un esercizio:
    - Cambiare un virtual host non sicuro in uno sicuro

    apro httpd.conf di apache
    ammettiamo che il virtual host sia

    <VirtualHost 10.0.0.32:80>
    ServerAdmin webmaster@ciao.biz
    DocumentRoot /www/mirko/lycia.ciao.biz
    ServerName lycia.ciao.biz
    ServerPath /lycia.ciao.biz
    ScriptAlias /cgi-bin/ "/www/mirko/lycia.ciao.biz-cgi-bin/"
    ErrorLog /var/log/httpd/apache/lycia.ciao.biz-error_log
    CustomLog /var/log/httpd/apache/lycia.ciao.biz-access_log common
    </VirtualHost>


    lo modifico con:

    <VirtualHost 10.0.0.32:443>
    ServerAdmin webmaster@ciao.biz
    DocumentRoot /www/mirko/lycia.ciao.biz
    ServerName lycia.ciao.biz
    ServerPath /lycia.ciao.biz
    ScriptAlias /cgi-bin/ "/www/mirko/lycia.ciao.biz-cgi-bin/"
    ErrorLog /var/log/httpd/apache/lycia.ciao.biz-error_log
    CustomLog /var/log/httpd/apache/lycia.ciao.biz-access_log common
    TransferLog /var/log/httpd/access_log
    SSLEngine on
    SSLCertificateFile /etc/httpd/ssl.crt/server.crt
    SSLCertificateKeyFile /etc/httpd/ssl.key/server.key
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
    </VirtualHost>


    praticamente ho aggiunto:
    TransferLog /var/log/httpd/access_log
    SSLEngine on
    SSLCertificateFile /etc/httpd/ssl.crt/server.crt
    SSLCertificateKeyFile /etc/httpd/ssl.key/server.key
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown


    E'corretto???

    grazie

  2. #2
    Moderatore di ADSL e connettività, Reti LAN e Wireless e VoIP L'avatar di fivendra
    Registrato dal
    Jun 2001
    residenza
    Treviso
    Messaggi
    23,939
    quando maneggi i virtual host ne devi fare uno per l'accesso normale http e uno per https visto che poi girano su due porte diverse....

  3. #3
    nel senso che(nel file httpd.conf) devo lasciare sia
    <VirtualHost 10.0.0.32:80>
    ServerAdmin webmaster@ciao.biz
    DocumentRoot /www/mirko/lycia.ciao.biz
    ServerName lycia.ciao.biz
    ServerPath /lycia.ciao.biz
    ScriptAlias /cgi-bin/ "/www/mirko/lycia.ciao.biz-cgi-bin/"
    ErrorLog /var/log/httpd/apache/lycia.ciao.biz-error_log
    CustomLog /var/log/httpd/apache/lycia.ciao.biz-access_log common
    </VirtualHost>


    che

    <VirtualHost 10.0.0.32:443>
    ServerAdmin webmaster@ciao.biz
    DocumentRoot /www/mirko/lycia.ciao.biz
    ServerName lycia.ciao.biz
    ServerPath /lycia.ciao.biz
    ScriptAlias /cgi-bin/ "/www/mirko/lycia.ciao.biz-cgi-bin/"
    ErrorLog /var/log/httpd/apache/lycia.ciao.biz-error_log
    CustomLog /var/log/httpd/apache/lycia.ciao.biz-access_log common
    TransferLog /var/log/httpd/access_log
    SSLEngine on
    SSLCertificateFile /etc/httpd/ssl.crt/server.crt
    SSLCertificateKeyFile /etc/httpd/ssl.key/server.key
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
    </VirtualHost>
    ?????

    ma le righe che ho aggiunto nel virtualhost sicuro son giuste?

  4. #4

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.