Skip to content

Commit 3ac2b6c

Browse files
committed
Deployed b3292dfe4 to latest with MkDocs 1.6.1 and mike 2.1.3
1 parent 2e6cb01 commit 3ac2b6c

File tree

9 files changed

+415
-488
lines changed

9 files changed

+415
-488
lines changed

latest/developers-guide/OpenSSL-and-FIPS/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4669,17 +4669,17 @@ <h3 id="how-to-enabledisable-fips-mode">How to enable/disable FIPS mode<a class=
46694669
<h2 id="how-to-check-if-the-fips-mode-is-enabled">How to check if the FIPS mode is enabled<a class="headerlink" href="#how-to-check-if-the-fips-mode-is-enabled" title="Permanent link">&para;</a></h2>
46704670
<h3 id="log-message">Log message<a class="headerlink" href="#log-message" title="Permanent link">&para;</a></h3>
46714671
<p>When MongooseIM starts, it prints the following log message if FIPS mode is enabled</p>
4672-
<div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><code>2015-02-25 14:30:54.501 [warning] &lt;0.242.0&gt;@mongoose_fips:do_notify:37 FIPS mode enabled
4672+
<div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><code>2015-02-25 14:30:54.501 [warning] &lt;0.242.0&gt;@mongoose_fips:notify:15 FIPS mode enabled
46734673
</code></pre></div></td></tr></table></div>
46744674
<h3 id="run-time-check">Run-time check<a class="headerlink" href="#run-time-check" title="Permanent link">&para;</a></h3>
46754675
<p>Run the following function in the MongooseIM console:</p>
46764676
<div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><code><span class="nn">mongoose_fips</span><span class="p">:</span><span class="nf">status</span><span class="p">().</span>
46774677
</code></pre></div></td></tr></table></div>
46784678
<p>The function returns:</p>
46794679
<ul>
4680+
<li>not_supported - erlang compiled without fips support</li>
46804681
<li>not_enabled - fips_mode is not set to true in etc/app.config</li>
46814682
<li>enabled - fips_mode is set to true in etc/app.config</li>
4682-
<li>not_supported - erlang compiled without fips support</li>
46834683
</ul>
46844684
<h3 id="cipher-suites-difference">Cipher suites difference<a class="headerlink" href="#cipher-suites-difference" title="Permanent link">&para;</a></h3>
46854685
<p>A test using a <code>cipher_suites_test.sh</code> script (available in the tools directory) can be performed on MongooseIM with FIPS mode enabled and disabled.

latest/developers-guide/release_config/index.html

Lines changed: 2 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -3551,15 +3551,6 @@
35513551
</span>
35523552
</a>
35533553

3554-
</li>
3555-
3556-
<li class="md-nav__item">
3557-
<a href="#example" class="md-nav__link">
3558-
<span class="md-ellipsis">
3559-
Example
3560-
</span>
3561-
</a>
3562-
35633554
</li>
35643555

35653556
<li class="md-nav__item">
@@ -4490,15 +4481,6 @@
44904481
</span>
44914482
</a>
44924483

4493-
</li>
4494-
4495-
<li class="md-nav__item">
4496-
<a href="#example" class="md-nav__link">
4497-
<span class="md-ellipsis">
4498-
Example
4499-
</span>
4500-
</a>
4501-
45024484
</li>
45034485

45044486
<li class="md-nav__item">
@@ -4572,16 +4554,7 @@ <h3 id="configure-script">Configure script<a class="headerlink" href="#configure
45724554
<span class="normal">11</span>
45734555
<span class="normal">12</span>
45744556
<span class="normal">13</span>
4575-
<span class="normal">14</span>
4576-
<span class="normal">15</span>
4577-
<span class="normal">16</span>
4578-
<span class="normal">17</span>
4579-
<span class="normal">18</span>
4580-
<span class="normal">19</span>
4581-
<span class="normal">20</span>
4582-
<span class="normal">21</span>
4583-
<span class="normal">22</span>
4584-
<span class="normal">23</span></pre></div></td><td class="code"><div><pre><span></span><code>configure: OPTIONS
4557+
<span class="normal">14</span></pre></div></td><td class="code"><div><pre><span></span><code>configure: OPTIONS
45854558

45864559
Specifies which 3rd party deps will be included in the release.
45874560
Writes configure.out file as output - this file can be sourced with:
@@ -4590,27 +4563,13 @@ <h3 id="configure-script">Configure script<a class="headerlink" href="#configure
45904563

45914564
Writes rel/configure.vars.config which can be used as Reltool input.
45924565

4593-
3rd party apps:
4594-
4595-
with-none include no 3rd party drivers
4596-
with-all include all drivers
4597-
with-mysql include mysql driver
4598-
with-odbc include an ODBC driver (requires unixodbc to compile)
4599-
with-pgsql include pgsql driver
4600-
with-redis include redis driver
4601-
46024566
Options:
46034567

46044568
prefix Installation PREFIX directory. Default: /usr/local
46054569
system Install files into $PREFIX/{bin, etc, ...} instead of a completely self contained release. Default: no
46064570
user System user to run the server as. Default:
46074571
</code></pre></div></td></tr></table></div>
46084572
<p>This script is also accessible via the make <code>configure</code> target.</p>
4609-
<h3 id="example">Example<a class="headerlink" href="#example" title="Permanent link">&para;</a></h3>
4610-
<p>If <code>mysql</code> and <code>redis</code> are the only drivers that should be included in the
4611-
release, run the following command before <code>make rel</code>:</p>
4612-
<div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><code>$ ./tools/configure with-mysql with-redis
4613-
</code></pre></div></td></tr></table></div>
46144573
<p>You only need to run the <code>./tools/configure</code> command once (unless changing the release's config is needed to
46154574
include some other dependencies).</p>
46164575
<h3 id="system-install">System install<a class="headerlink" href="#system-install" title="Permanent link">&para;</a></h3>
@@ -4620,7 +4579,7 @@ <h3 id="system-install">System install<a class="headerlink" href="#system-instal
46204579
<p>On Mac:</p>
46214580
<div class="highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span>
46224581
<span class="normal">2</span>
4623-
<span class="normal">3</span></pre></div></td><td class="code"><div><pre><span></span><code>./tools/configure<span class="w"> </span>with-all<span class="w"> </span><span class="nv">user</span><span class="o">=</span>erszcz<span class="w"> </span><span class="nv">prefix</span><span class="o">=</span>/tmp/mim-sandbox-system<span class="w"> </span><span class="nv">system</span><span class="o">=</span>yes
4582+
<span class="normal">3</span></pre></div></td><td class="code"><div><pre><span></span><code>./tools/configure<span class="w"> </span><span class="nv">user</span><span class="o">=</span>erszcz<span class="w"> </span><span class="nv">prefix</span><span class="o">=</span>/tmp/mim-sandbox-system<span class="w"> </span><span class="nv">system</span><span class="o">=</span>yes
46244583
cat<span class="w"> </span>configure.out<span class="w"> </span>rel/configure.vars.config
46254584
<span class="nv">RUNNER_GROUP</span><span class="o">=</span>staff<span class="w"> </span>make<span class="w"> </span>install
46264585
</code></pre></div></td></tr></table></div>

0 commit comments

Comments
 (0)