<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How add multiple certificate authority path files to web.conf using sslRootCAPath in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/How-add-multiple-certificate-authority-path-files-to-web-conf/m-p/690103#M16062</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230438"&gt;@alfredoh14&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;The "noise" is the Base64 certificate data. To combine multiple PEM certificate files into a single file, simply concatenate the files:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----&lt;/LI-CODE&gt;&lt;P&gt;General information on PEM is readily available online. Splunk also provides a quick tutorial at&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Security/HowtoprepareyoursignedcertificatesforSplunk#How_to_configure_a_certificate_chain" target="_self"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Security/HowtoprepareyoursignedcertificatesforSplunk#How_to_configure_a_certificate_chain&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;You can reference the combined PEM file in the server.conf [sslConfig] stanza&amp;nbsp;sslRootCAPath setting, e.g.:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;# $SPLUNK_HOME\etc\system\local\server.conf

[sslConfig]
sslRootCAPath = X:\path\to\cacerts.pem&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 08 Jun 2024 22:57:43 GMT</pubDate>
    <dc:creator>tscroggins</dc:creator>
    <dc:date>2024-06-08T22:57:43Z</dc:date>
    <item>
      <title>How add multiple certificate authority path files to web.conf using sslRootCAPath</title>
      <link>https://community.splunk.com/t5/Alerting/How-add-multiple-certificate-authority-path-files-to-web-conf/m-p/690025#M16055</link>
      <description>&lt;P&gt;hello,&lt;BR /&gt;I have 2 files that contains the path of the root Certificate Authority that issued my server certificate.&lt;BR /&gt;Not sure if the above is logically correct but i do have 2 files that have the paths to the certificate authority, and I must use both of them somehow/someway in web.conf.&lt;BR /&gt;&lt;BR /&gt;my web.conf settings are similar to the below:&lt;BR /&gt;### START SPLUNK WEB USING HTTPS:8443 ###&lt;BR /&gt;enableSplunkWebSSL = 1&lt;BR /&gt;httpport = 8443&lt;BR /&gt;### SSL CERTIFICATE FILES ###&lt;BR /&gt;privKeyPath = $SPLUNK_HOME\etc\auth\DOD.web.certificates\privkey.pem&lt;BR /&gt;serverCert = $SPLUNK_HOME\etc\auth\DOD.web.certificates\cert.pem&lt;BR /&gt;sslRootCAPath =&lt;/P&gt;&lt;P&gt;However, for "sslRootCAPath =", i need to add both of the files i have.&lt;BR /&gt;However, the splunk documentation does not specify how I would be able to add these files, or if I can add them with ",", or if there is another property that would allow additional files with certificate authority paths.&lt;/P&gt;&lt;P&gt;the files and sample of their content are below.&lt;BR /&gt;Basically they are made-up of "noise" except for the header and footer section of the file.&lt;BR /&gt;So not sure how I would combine them into a single file if that is what splunk would like.&lt;BR /&gt;ca-200.pem -----BEGIN CERTIFICATE-----&lt;BR /&gt;MIIEjzCCA3egAwIBAgICAwMwDQYJKoZIhvcNAQELBQAwWzELMAkGA1UEBhMCVVMxGDAWBgNVBAoT&lt;BR /&gt;-----END CERTIFICATE-----&lt;/P&gt;&lt;P&gt;MyCompanyRootCA3.pem&lt;BR /&gt;-----BEGIN CERTIFICATE-----&lt;BR /&gt;MIIDczCCAlugAwIBAgIBATANBgkqhkiG9w0BAQsFADBbMQswCQYDVQQGEwJVUzEY&lt;BR /&gt;-----END CERTIFICATE----&lt;/P&gt;&lt;P&gt;any help is apreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 15:55:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-add-multiple-certificate-authority-path-files-to-web-conf/m-p/690025#M16055</guid>
      <dc:creator>alfredoh14</dc:creator>
      <dc:date>2024-06-07T15:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: How add multiple certificate authority path files to web.conf using sslRootCAPath</title>
      <link>https://community.splunk.com/t5/Alerting/How-add-multiple-certificate-authority-path-files-to-web-conf/m-p/690103#M16062</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230438"&gt;@alfredoh14&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;The "noise" is the Base64 certificate data. To combine multiple PEM certificate files into a single file, simply concatenate the files:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----&lt;/LI-CODE&gt;&lt;P&gt;General information on PEM is readily available online. Splunk also provides a quick tutorial at&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Security/HowtoprepareyoursignedcertificatesforSplunk#How_to_configure_a_certificate_chain" target="_self"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Security/HowtoprepareyoursignedcertificatesforSplunk#How_to_configure_a_certificate_chain&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;You can reference the combined PEM file in the server.conf [sslConfig] stanza&amp;nbsp;sslRootCAPath setting, e.g.:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;# $SPLUNK_HOME\etc\system\local\server.conf

[sslConfig]
sslRootCAPath = X:\path\to\cacerts.pem&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2024 22:57:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/How-add-multiple-certificate-authority-path-files-to-web-conf/m-p/690103#M16062</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2024-06-08T22:57:43Z</dc:date>
    </item>
  </channel>
</rss>

