• [^] # Re: Backward

    Posté par (site web personnel) . En réponse au message problème https. Évalué à 1.

    sur apache 1 pour mod_ssl, j'ai ça :
    <IfModule mod_ssl.c>
     # These will make apache listen to port 443 in addition to the
     # standard port 80. HTTPS requests use port 443.
     Listen 80
     Listen 443
     # Some MIME-types for downloading Certificates and CRLs
     AddType application/x-x509-ca-cert .crt
     AddType application/x-pkcs7-crl .crl
     # Semaphore:
     # Configure the path to the mutual exclusion semaphore the
     # SSL engine uses internally for inter-process synchronization.
     SSLMutex file:/var/run/mod_ssl_mutex
     # Inter-Process Session Cache:
     # Configure the SSL Session Cache: First either `none'
     # or `dbm:/path/to/file' for the mechanism to use and
     # second the expiring timeout (in seconds).
     #SSLSessionCache dbm:/var/run/mod_ssl_scache
     #SSLSessionCacheTimeout 300
     SSLSessionCache none
     # Pseudo Random Number Generator (PRNG):
     # Configure one or more sources to seed the PRNG of the
     # SSL library. The seed data should be of good random quality.
     SSLRandomSeed startup file:/dev/urandom 512
     SSLRandomSeed connect file:/dev/urandom 512
     # Logging:
     # The home of the dedicated SSL protocol logfile. Errors are
     # additionally duplicated in the general error log file. Put
     # this somewhere where it cannot be used for symlink attacks on
     # a real server (i.e. somewhere where only root can write).
     # Log levels are (ascending order: higher ones include lower ones):
     # none, error, warn, info, trace, debug.
     SSLLog /var/log/apache/ssl_engine.log
     SSLLogLevel debug
    </IfModule>
    
    bon si ça peux te rendre service, y a qu'a copier coller ça dans ton httpd2.conf et installer le module apache2 qui va bien et ça devrais marcher... ps : il est recomandé d'utiliser apache1 avec php pour des histoires de thread-safe donc selon ton cas choisis bien...