Outils pour utilisateurs

Outils du site


linux:installation:openssl

Ceci est une ancienne révision du document !


agi openssl ssl-cert

Puis on suit ce tuto : https://www.digitalocean.com/community/tutorials/how-to-create-a-self-signed-ssl-certificate-for-apache-in-debian-9

Synthèses des commandes

Step 1 — Creating the SSL Certificate

We can create a self-signed key and certificate pair with OpenSSL in a single command :

sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout  /etc/ssl/private/apache-selfsigned.key -out /etc/ssl/certs/apache-selfsigned.crt

You will be asked a series of questions. Before we go over that, let’s take a look at what is happening in the command we are issuing:

  1. Output
  2. Country Name (2 letter code) [AU]:US
  3. State or Province Name (full name) [Some-State]:New York
  4. Locality Name (eg, city) []:New York City
  5. Organization Name (eg, company) [Internet Widgits Pty Ltd]:Bouncy Castles, Inc.
  6. Organizational Unit Name (eg, section) []:Ministry of Water Slides
  7. Common Name (e.g. server FQDN or YOUR name) []:server_IP_address
  8. Email Address []:admin@your_domain.com

Both of the files you created will be placed in the appropriate subdirectories under /etc/ssl.

Step 2 — Configuring Apache to Use SSL

We have created our key and certificate files under the /etc/ssl directory. Now we just need to modify our Apache configuration to take advantage of these.

We will make a few adjustments to our configuration :

  1. We will create a configuration snippet to specify strong default SSL settings.
  2. We will modify the included SSL Apache Virtual Host file to point to our generated SSL certificates.(Recommended)
  3. We will modify the unencrypted Virtual Host file to automatically redirect requests to the encrypted Virtual Host.

When we are finished, we should have a secure SSL configuration.

Creating an Apache Configuration Snippet with Strong Encryption Settings

First, we will create an Apache configuration snippet to define some SSL settings. This will set Apache up with a strong SSL cipher suite and enable some advanced features that will help keep our server secure. The parameters we will set can be used by any Virtual Hosts enabling SSL.

Create a new snippet in the /etc/apache2/conf-available directory. We will name the file ssl-params.conf to make its purpose clear:

sudo nano /etc/apache2/conf-available/ssl-params.conf

Paste the following configuration into the ssl-params.conf file we opened:

SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
SSLProtocol All -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLHonorCipherOrder On
# Disable preloading HSTS for now.  You can use the commented out header line that includes
# the "preload" directive if you understand the implications.
# Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"
Header always set X-Frame-Options DENY
Header always set X-Content-Type-Options nosniff
# Requires Apache >= 2.4
SSLCompression off
SSLUseStapling on
SSLStaplingCache "shmcb:logs/stapling-cache(150000)"
# Requires Apache >= 2.4.11
SSLSessionTickets Off

Save and close the file when you are finished.

Modifying the Default Apache SSL Virtual Host File

Next, let’s modify /etc/apache2/sites-available/default-ssl.conf, the default Apache SSL Virtual Host file. If you are using a different server block file, substitute its name in the commands below.

Before we go any further, let’s back up the original SSL Virtual Host file :

sudo cp /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-available/default-ssl.conf.bak

Now, open the SSL Virtual Host file to make adjustments :

sudo nano /etc/apache2/sites-available/default-ssl.conf

Inside, with most of the comments removed, the Virtual Host block should look something like this by default:

/etc/apache2/sites-available/default-ssl.conf

  1. <IfModule mod_ssl.c>
  2. <VirtualHost _default_:443>
  3. SServerAdmin webmaster@localhost
  4.  
  5. DocumentRoot /var/www/html
  6.  
  7. ErrorLog ${APACHE_LOG_DIR}/error.log
  8. CustomLog ${APACHE_LOG_DIR}/access.log combined
  9.  
  10. SSLEngine on
  11.  
  12. SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
  13. SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
  14.  
  15. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  16. SSLOptions +StdEnvVars
  17. </FilesMatch>
  18. <Directory /usr/lib/cgi-bin>
  19. SSLOptions +StdEnvVars
  20. </Directory>
  21.  
  22. </VirtualHost>
  23. </IfModule>

We will be making some minor adjustments to the file. We will set the normal things we’d want to adjust in a Virtual Host file (ServerAdmin email address, ServerName, etc.), and adjust the SSL directives to point to our certificate and key files. Again, if you’re using a different document root, be sure to update the DocumentRoot directive.

After making these changes, your server block should look similar to this:

/etc/apache2/sites-available/default-ssl.conf

  1. <IfModule mod_ssl.c>
  2. <VirtualHost _default_:443>
  3. ServerAdmin your_email@example.com
  4. ServerName server_domain_or_IP
  5.  
  6. DocumentRoot /var/www/html
  7.  
  8. ErrorLog ${APACHE_LOG_DIR}/error.log
  9. CustomLog ${APACHE_LOG_DIR}/access.log combined
  10.  
  11. SSLEngine on
  12.  
  13. SSLCertificateFile /etc/ssl/certs/apache-selfsigned.crt
  14. SSLCertificateKeyFile /etc/ssl/private/apache-selfsigned.key
  15.  
  16. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  17. SSLOptions +StdEnvVars
  18. </FilesMatch>
  19. <Directory /usr/lib/cgi-bin>
  20. SSLOptions +StdEnvVars
  21. </Directory>
  22.  
  23. </VirtualHost>
  24. </IfModule>

Save and close the file when you are finished.

As it stands now, the server will provide both unencrypted HTTP and encrypted HTTPS traffic. For better security, it is recommended in most cases to redirect HTTP to HTTPS automatically. If you do not want or need this functionality, you can safely skip this section.

To adjust the unencrypted Virtual Host file to redirect all traffic to be SSL encrypted, open the /etc/apache2/sites-available/000-default.conf file:

sudo nano /etc/apache2/sites-available/000-default.conf

Inside, within the VirtualHost configuration blocks, add a Redirect directive, pointing all traffic to the SSL version of the site:

/etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>
        . . .
 
        Redirect "/" "https://your_domain_or_IP/"
 
        . . .
</VirtualHost>
linux/installation/openssl.1662216803.txt.gz · Dernière modification : 2022/09/03 14:53 de tutospisto