diff options
| author | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-05-07 08:47:04 +0200 |
|---|---|---|
| committer | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-05-07 08:47:04 +0200 |
| commit | fdf19b48fdb7a022b8f0d6f490bf07b9a1d3bc7a (patch) | |
| tree | f5e1aacf477d4116d0c96159e476a8f423636263 /www/server-config/apache2/ports.conf | |
| parent | 1b9db81514c6ad7c0cfd2952edc7d42f1e28e18b (diff) | |
| download | ATS-fdf19b48fdb7a022b8f0d6f490bf07b9a1d3bc7a.tar.gz ATS-fdf19b48fdb7a022b8f0d6f490bf07b9a1d3bc7a.tar.bz2 ATS-fdf19b48fdb7a022b8f0d6f490bf07b9a1d3bc7a.zip | |
ajout de SSL
Diffstat (limited to '')
| -rw-r--r-- | www/server-config/apache2/ports.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/server-config/apache2/ports.conf b/www/server-config/apache2/ports.conf new file mode 100644 index 0000000..5daec58 --- /dev/null +++ b/www/server-config/apache2/ports.conf @@ -0,0 +1,15 @@ +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen 80 + +<IfModule ssl_module> + Listen 443 +</IfModule> + +<IfModule mod_gnutls.c> + Listen 443 +</IfModule> + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet |
