<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Enable TLS 1.3 in Apache and Nginx	</title>
	<atom:link href="https://www.tecmint.com/enable-tls-in-apache-and-nginx/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/enable-tls-in-apache-and-nginx/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 11 Oct 2021 18:35:12 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Eric Evans		</title>
		<link>https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1606702</link>

		<dc:creator><![CDATA[Eric Evans]]></dc:creator>
		<pubDate>Mon, 11 Oct 2021 18:35:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=33226#comment-1606702</guid>

					<description><![CDATA[I followed the guide but httpd still says TLSv1.3 is an illegal protocol.
&lt;pre&gt;
mod_ssl is enabled
ssl.conf Listen 443 httpd
&lt;/pre&gt;
adding ssl throws an error.
&lt;pre&gt;
[root@webhost ~]# httpd -V
Server version: Apache/2.4.6 (CentOS)
Server built:   Nov 16 2020 16:18:20
Server&#039;s Module Magic Number: 20120211:24
Server loaded:  APR 1.4.8, APR-UTIL 1.5.2
Compiled using: APR 1.4.8, APR-UTIL 1.5.2
Architecture:   64-bit
Server MPM:     prefork
  threaded:     no
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT=&quot;/etc/httpd&quot;
 -D SUEXEC_BIN=&quot;/usr/sbin/suexec&quot;
 -D DEFAULT_PIDLOG=&quot;/run/httpd/httpd.pid&quot;
 -D DEFAULT_SCOREBOARD=&quot;logs/apache_runtime_status&quot;
 -D DEFAULT_ERRORLOG=&quot;logs/error_log&quot;
 -D AP_TYPES_CONFIG_FILE=&quot;conf/mime.types&quot;
 -D SERVER_CONFIG_FILE=&quot;conf/httpd.conf&quot;

OpenSSL 1.1.1g FIPS  21 Apr 2020
&lt;/pre&gt;
If you need more info let me know, but I think this should be working.]]></description>
			<content:encoded><![CDATA[<p>I followed the guide but httpd still says TLSv1.3 is an illegal protocol.</p>
<pre>
mod_ssl is enabled
ssl.conf Listen 443 httpd
</pre>
<p>adding ssl throws an error.</p>
<pre>
[root@webhost ~]# httpd -V
Server version: Apache/2.4.6 (CentOS)
Server built:   Nov 16 2020 16:18:20
Server's Module Magic Number: 20120211:24
Server loaded:  APR 1.4.8, APR-UTIL 1.5.2
Compiled using: APR 1.4.8, APR-UTIL 1.5.2
Architecture:   64-bit
Server MPM:     prefork
  threaded:     no
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT="/etc/httpd"
 -D SUEXEC_BIN="/usr/sbin/suexec"
 -D DEFAULT_PIDLOG="/run/httpd/httpd.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="conf/mime.types"
 -D SERVER_CONFIG_FILE="conf/httpd.conf"

OpenSSL 1.1.1g FIPS  21 Apr 2020
</pre>
<p>If you need more info let me know, but I think this should be working.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Özgür Kazancci		</title>
		<link>https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1311231</link>

		<dc:creator><![CDATA[Özgür Kazancci]]></dc:creator>
		<pubDate>Sat, 11 Jan 2020 14:21:05 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=33226#comment-1311231</guid>

					<description><![CDATA[Apache&#039;s configuration in that article is completely messed up. 
Apache&#039;s SSL Protocol configuration should be:
&lt;strong&gt;SSLProtocol -all +TLSv1.2 +TLSv1.3&lt;/strong&gt;
instead of
ssl_protocols (&#060;- that&#039;s nginx format, not apache)
That&#039;s why the guy called &#034;Spelto&#034; has failed there^^.]]></description>
			<content:encoded><![CDATA[<p>Apache&#8217;s configuration in that article is completely messed up.<br />
Apache&#8217;s SSL Protocol configuration should be:<br />
<strong>SSLProtocol -all +TLSv1.2 +TLSv1.3</strong><br />
instead of<br />
ssl_protocols (&lt;- that&#039;s nginx format, not apache)<br />
That&#039;s why the guy called &quot;Spelto&quot; has failed there^^.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1284081</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 07 Nov 2019 05:27:02 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=33226#comment-1284081</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1283792&quot;&gt;Dip&lt;/a&gt;.

@Dip,

TLSv1.3 is supported in Apache2 version 2.4.36 with OpenSSL 1.1.1. I see you have Apache version 2.4.6, please update it.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1283792">Dip</a>.</p>
<p>@Dip,</p>
<p>TLSv1.3 is supported in Apache2 version 2.4.36 with OpenSSL 1.1.1. I see you have Apache version 2.4.6, please update it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dip		</title>
		<link>https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1283792</link>

		<dc:creator><![CDATA[Dip]]></dc:creator>
		<pubDate>Wed, 06 Nov 2019 13:56:17 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=33226#comment-1283792</guid>

					<description><![CDATA[Hello.

Great instructions.

But we have problems with &lt;code&gt;httpd -t&lt;/code&gt;:
&lt;pre&gt;
syntax error in /etc/httpd/conf.d/Vhosts.conf:
SSLProtocol: Illegal protocol &#039;TLSv1.3&#039;
&lt;/pre&gt;
Oracle Linux:
&lt;pre&gt;
Server version: Apache/2.4.6
OpenSSL 1.1.1c  28 May 2019
&lt;/pre&gt;
What could be the problem?

Thanks.

BR]]></description>
			<content:encoded><![CDATA[<p>Hello.</p>
<p>Great instructions.</p>
<p>But we have problems with <code>httpd -t</code>:</p>
<pre>
syntax error in /etc/httpd/conf.d/Vhosts.conf:
SSLProtocol: Illegal protocol 'TLSv1.3'
</pre>
<p>Oracle Linux:</p>
<pre>
Server version: Apache/2.4.6
OpenSSL 1.1.1c  28 May 2019
</pre>
<p>What could be the problem?</p>
<p>Thanks.</p>
<p>BR</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1282439</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 04 Nov 2019 05:19:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=33226#comment-1282439</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1280788&quot;&gt;Spelto&lt;/a&gt;.

@Spelto,

Did you enable the &lt;code&gt;mod_ssl&lt;/code&gt; module?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/enable-tls-in-apache-and-nginx/comment-page-1/#comment-1280788">Spelto</a>.</p>
<p>@Spelto,</p>
<p>Did you enable the <code>mod_ssl</code> module?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
