<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Use Cloudron Logins for host protected settings]]></title><description><![CDATA[<p dir="auto">Title pretty much says all.<br />
Would it be possible to use the Cloudron logins as the base for auth when enabling host protection?<br />
It is not very user friendly to have to set up accounts manually in the config file.</p>
<p dir="auto">On the same idea does anyone know if it's possible to protect only certain rooms?</p>
]]></description><link>https://forum.cloudron.io/topic/11590/use-cloudron-logins-for-host-protected-settings</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 05:35:56 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/11590.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 23 Apr 2024 09:17:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 08 Oct 2025 06:27:44 GMT]]></title><description><![CDATA[<p dir="auto">Thank you everyone for your responses.</p>
<blockquote>
<p dir="auto">I'm trying to configure Mirotalk SFU to only allow logged in Cloudron users to join a room.</p>
</blockquote>
<p dir="auto">Realised that the solution was far simpler than I thought - I just needed to add a single line to the .env file:</p>
<p dir="auto">OIDC_AUTH_REQUIRED=true</p>
<p dir="auto"><em>Thank you</em> deeply to everyone working on Cloudron and all associated apps... I'm in awe of this community!</p>
<p dir="auto">Ads</p>
]]></description><link>https://forum.cloudron.io/post/113536</link><guid isPermaLink="true">https://forum.cloudron.io/post/113536</guid><dc:creator><![CDATA[admeister]]></dc:creator><pubDate>Wed, 08 Oct 2025 06:27:44 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 06 Oct 2025 08:41:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/admeister" aria-label="Profile: admeister">@<bdi>admeister</bdi></a> said in <a href="/post/113453">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">I'm trying to configure Mirotalk SFU to only allow logged in Cloudron users to join a room.</p>
</blockquote>
<p dir="auto">Simply <strong>remove all the old or unnecessary entries</strong> from your <code>env</code> file:</p>
<p dir="auto"><img src="/assets/uploads/files/1759739535344-del-resized.png" alt="del.png" class=" img-fluid img-markdown" /></p>
<blockquote>
<p dir="auto">Note: The parameter <code>ALLOW_ROOM_CREATION_WITHOUT_HOST</code> is <strong>not related to MiroTalk SFU</strong>.</p>
</blockquote>
<p dir="auto">To <strong>explicitly</strong> configure MiroTalk with <strong>Cloudron OIDC Authentication</strong> (this is also the default behavior if not explicitly set), use the following environment variables:</p>
<pre><code class="language-bash">OIDC_ENABLED=true
OIDC_ALLOW_ROOMS_CREATION_FOR_AUTH_USERS=true
</code></pre>
<ul>
<li><code>OIDC_ENABLED=true</code> — Enables OIDC authentication.</li>
<li><code>OIDC_ALLOW_ROOMS_CREATION_FOR_AUTH_USERS=true</code> — Allows all authenticated users via OIDC to create their own rooms.</li>
</ul>
<hr />
<p dir="auto">If you <strong>do not want to use OIDC authentication</strong> but still want to define your own user logins, you can <strong>disable OIDC</strong> and enable MiroTalk SFU internal <strong>Host Protection Mode</strong>:</p>
<pre><code class="language-bash"># Disable Cloudron OIDC
OIDC_ENABLED=false

# Host protection
HOST_PROTECTED=true
HOST_USER_AUTH=false

# Define host users in the format:
# username:password:displayName:allowedRooms (comma-separated)
HOST_USERS="user1:pass1:user-1:*|user2@mail.com:pass2:user two:*|user3:pass3:user name:*"
</code></pre>
<ul>
<li><code>HOST_PROTECTED=true</code> — Enables Host Protection mode.</li>
<li><code>HOST_USER_AUTH=false</code> — Disables additional user authentication beyond host users.</li>
<li><code>HOST_USERS</code> — List of host users, with <code>*</code> allowing access to all rooms or specific room names separated by commas.</li>
</ul>
<blockquote>
<p dir="auto"><img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/26a0.png?v=74f512c8ff7" class="not-responsive emoji emoji-android emoji--warning" style="height:23px;width:auto;vertical-align:middle" title="⚠" alt="⚠" />️ After making changes, <strong>restart your MiroTalk instance</strong> for them to take effect.</p>
</blockquote>
<hr />
<p dir="auto">For a <strong>complete environment configuration</strong>, check the <code>.env.template</code> file:<br />
<a href="https://github.com/miroslavpejic85/mirotalksfu/blob/main/.env.template" target="_blank" rel="noopener noreferrer nofollow ugc">Full env example</a></p>
<p dir="auto">The environment variables are loaded in <code>config.js</code> and serve both as runtime configuration and documentation for additional features:<br />
<a href="https://github.com/miroslavpejic85/mirotalksfu/blob/main/app/src/config.template.js" target="_blank" rel="noopener noreferrer nofollow ugc">Full config.js example</a></p>
]]></description><link>https://forum.cloudron.io/post/113459</link><guid isPermaLink="true">https://forum.cloudron.io/post/113459</guid><dc:creator><![CDATA[MiroTalk]]></dc:creator><pubDate>Mon, 06 Oct 2025 08:41:01 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 06 Oct 2025 04:02:18 GMT]]></title><description><![CDATA[<p dir="auto">Hi there,</p>
<p dir="auto">re: Mirotalk SFU 1.9.77</p>
<p dir="auto">I'm trying to configure Mirotalk SFU to only allow logged in Cloudron users to join a room.</p>
<p dir="auto">If I'm reading this thread correctly, I don't need to include any OIDC settings in the env file anymore - so this is what my env file looks like, attached.</p>
<p dir="auto">As the host, Mirotalk now (incorrectly) says that I am not logged in myself (even though I launched MiroTalk from my Cloudron admin dashboard), and then it asks me to login with the MiroTalk interface itself (and not the Cloudron login). When I attempt to use my Cloudron login details it says I have invalid credentials.</p>
<p dir="auto">So do I actually need to configure all the OIDC settings in the env file? If so, can I pls get some guidance on how to arrive at the exact settings needed?</p>
<p dir="auto">Thank you! <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=74f512c8ff7" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /><br />
Ads</p>
<p dir="auto"><img src="/assets/uploads/files/1759723032741-scr-20251006-nglp-resized.png" alt="SCR-20251006-nglp.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.cloudron.io/post/113453</link><guid isPermaLink="true">https://forum.cloudron.io/post/113453</guid><dc:creator><![CDATA[admeister]]></dc:creator><pubDate>Mon, 06 Oct 2025 04:02:18 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 16:34:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> good guess to resolve this quicker!</p>
]]></description><link>https://forum.cloudron.io/post/98413</link><guid isPermaLink="true">https://forum.cloudron.io/post/98413</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Wed, 18 Dec 2024 16:34:29 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 16:23:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> awesome i was wondering how i did not think of this</p>
<p dir="auto">silly me</p>
]]></description><link>https://forum.cloudron.io/post/98411</link><guid isPermaLink="true">https://forum.cloudron.io/post/98411</guid><dc:creator><![CDATA[mdc773]]></dc:creator><pubDate>Wed, 18 Dec 2024 16:23:41 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 15:48:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mdc773" aria-label="Profile: mdc773">@<bdi>mdc773</bdi></a> I think perhaps you're missing something here.</p>
<p dir="auto">If you're already logged into your Cloudron dashboard in the same browser you visit your MiroTalk app URL, it doesn't prompt for auth - it just magically checks if you're logged in and if you are just automatically logs you in.</p>
<p dir="auto">But if you visit the same URL in a private tab you should indeed get prompted to login to Cloudron.</p>
<p dir="auto">At least that's what happens for me.</p>
<p dir="auto">I am logged into my Cloudron dashboard, so when I visit my MiroTalk URL I arrive here:</p>
<p dir="auto"><img src="/assets/uploads/files/1734536547817-3c0c3711-4567-405e-83ab-b851f31a41b6-image-resized.png" alt="3c0c3711-4567-405e-83ab-b851f31a41b6-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">But if I visit the same URL in a private tab I get this:</p>
<p dir="auto"><img src="/assets/uploads/files/1734536585638-4ad9ae9f-beae-4c24-92b5-bf532a8cf8d5-image-resized.png" alt="4ad9ae9f-beae-4c24-92b5-bf532a8cf8d5-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I also just double checked and if you try to visit a join URL of a meeting after the logged in person has left the meeting, it no longer works and you are presented with the login screen again.</p>
]]></description><link>https://forum.cloudron.io/post/98407</link><guid isPermaLink="true">https://forum.cloudron.io/post/98407</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Wed, 18 Dec 2024 15:48:02 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 15:08:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> said in <a href="/post/98401">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">I think a direct link is like a public link share unless the room is protected, so that might be expected on how the app is currently written</p>
</blockquote>
<p dir="auto">even if i enable protection still cant use couldron account</p>
]]></description><link>https://forum.cloudron.io/post/98406</link><guid isPermaLink="true">https://forum.cloudron.io/post/98406</guid><dc:creator><![CDATA[mdc773]]></dc:creator><pubDate>Wed, 18 Dec 2024 15:08:51 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 14:23:20 GMT]]></title><description><![CDATA[<p dir="auto">I think a direct link is like a public link share unless the room is protected, so that might be expected on how the app is currently written</p>
]]></description><link>https://forum.cloudron.io/post/98401</link><guid isPermaLink="true">https://forum.cloudron.io/post/98401</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Wed, 18 Dec 2024 14:23:20 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 13:42:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> Yes cloudron user management was selected. Wired now when i vist a room and does not prompt the user auth just lunches the room: /</p>
]]></description><link>https://forum.cloudron.io/post/98398</link><guid isPermaLink="true">https://forum.cloudron.io/post/98398</guid><dc:creator><![CDATA[mdc773]]></dc:creator><pubDate>Wed, 18 Dec 2024 13:42:44 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 11:55:16 GMT]]></title><description><![CDATA[<p dir="auto">was the app installed with Cloudron usermanagement? If so do you see an error somewhere?</p>
]]></description><link>https://forum.cloudron.io/post/98396</link><guid isPermaLink="true">https://forum.cloudron.io/post/98396</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Wed, 18 Dec 2024 11:55:16 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Wed, 18 Dec 2024 01:19:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> said in <a href="/post/97971">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">@Neiluj I just tried this here also with MiroTalk SFU and without changing the app configs manually, just install the app with Cloudron usermanagement enabled and then only authenticated users can create meetings, while everyone can join them with the share link.</p>
</blockquote>
<p dir="auto">cant login when i follow your direction</p>
]]></description><link>https://forum.cloudron.io/post/98373</link><guid isPermaLink="true">https://forum.cloudron.io/post/98373</guid><dc:creator><![CDATA[mdc773]]></dc:creator><pubDate>Wed, 18 Dec 2024 01:19:49 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 09 Dec 2024 10:29:24 GMT]]></title><description><![CDATA[<p dir="auto">@Neiluj I just tried this here also with MiroTalk SFU and without changing the app configs manually, just install the app with Cloudron usermanagement enabled and then only authenticated users can create meetings, while everyone can join them with the share link.</p>
]]></description><link>https://forum.cloudron.io/post/97971</link><guid isPermaLink="true">https://forum.cloudron.io/post/97971</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 09 Dec 2024 10:29:24 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Sun, 08 Dec 2024 18:01:24 GMT]]></title><description><![CDATA[<p dir="auto">@Neiluj If you have <strong>OIDC enabled</strong>, you can safely remove the entire <code>host: { ... }</code> section from your configuration.  Simply <strong>rely on OIDC for authentication</strong>, and let me know if everything works as expected.  Thank you!</p>
]]></description><link>https://forum.cloudron.io/post/97938</link><guid isPermaLink="true">https://forum.cloudron.io/post/97938</guid><dc:creator><![CDATA[MiroTalk]]></dc:creator><pubDate>Sun, 08 Dec 2024 18:01:24 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Sun, 08 Dec 2024 16:00:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mirotalk" aria-label="Profile: MiroTalk">@<bdi>MiroTalk</bdi></a> said in <a href="/post/95259">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cvachery" aria-label="Profile: cvachery">@<bdi>cvachery</bdi></a> said in <a href="/post/91181">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="/user/mirotalk" aria-label="Profile: MiroTalk">@<bdi>MiroTalk</bdi></a> in the latest version it works and the config is nearly perfect<br />
Only issue is still one identified erlier that anonymous users can create room if they go to the specific</p>
</blockquote>
<p dir="auto">Should be fixed in both <code>MiroTalk P2P v.1.3.79</code> &amp; <code>MiroTalk SFU v.1.5.80</code>. Cheers.</p>
</blockquote>
<p dir="auto">Yeah I am still having issue with this / cannot figure out the correct settings to prevent anonymous user room creation.</p>
<p dir="auto">Basically, I am trying to limit room creation to registered Cloudron User, but still keep the possibility for anonymous users to join a room once created.</p>
<p dir="auto">At the moment, my MiroTalk SFU app has its cloudron setting access control set to "Only allow the following users and groups".</p>
<p dir="auto">I do have a custom config.js with the following:</p>
<pre><code>    host: {
        /*
            Host Protection (default: false)
            To enhance host security, enable host protection - user auth and provide valid
            usernames and passwords in the users array.
        */
        protected: true,
        user_auth: false,
        users: [
            /*
            {
                username: 'username',
                password: 'password',
            },
            {
                username: 'username2',
                password: 'password2',
            },
            ...
            */
        ]
    },
</code></pre>
<p dir="auto">Yet room creation is still allowed for anonymous users.</p>
<p dir="auto">I could set <code>user_auth</code> to <code>true</code> and provider "provide valid usernames and passwords in the users array." as mentioned in the config.js comment, but my understanding is that this will void/conflict with the cloudron OIDC integration.</p>
<p dir="auto">Of course, I am likely missing something so I am wondering if anyone got this working properly and if/when so, what are the proper settings for preventing room creation by anonymous users.</p>
<p dir="auto">Many thanks,</p>
]]></description><link>https://forum.cloudron.io/post/97934</link><guid isPermaLink="true">https://forum.cloudron.io/post/97934</guid><dc:creator><![CDATA[Teiluj]]></dc:creator><pubDate>Sun, 08 Dec 2024 16:00:17 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 07 Oct 2024 12:26:42 GMT]]></title><description><![CDATA[<p dir="auto">Both packages are updated also now.</p>
]]></description><link>https://forum.cloudron.io/post/95275</link><guid isPermaLink="true">https://forum.cloudron.io/post/95275</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 07 Oct 2024 12:26:42 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 07 Oct 2024 10:56:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cvachery" aria-label="Profile: cvachery">@<bdi>cvachery</bdi></a> said in <a href="/post/91181">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="/user/mirotalk" aria-label="Profile: MiroTalk">@<bdi>MiroTalk</bdi></a> in the latest version it works and the config is nearly perfect<br />
Only issue is still one identified erlier that anonymous users can create room if they go to the specific</p>
</blockquote>
<p dir="auto">Should be fixed in both <code>MiroTalk P2P v.1.3.79</code> &amp; <code>MiroTalk SFU v.1.5.80</code>. Cheers.</p>
]]></description><link>https://forum.cloudron.io/post/95259</link><guid isPermaLink="true">https://forum.cloudron.io/post/95259</guid><dc:creator><![CDATA[MiroTalk]]></dc:creator><pubDate>Mon, 07 Oct 2024 10:56:22 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Thu, 11 Jul 2024 08:53:17 GMT]]></title><description><![CDATA[<p dir="auto">Thanks to <a class="plugin-mentions-user plugin-mentions-a" href="/user/mirotalk" aria-label="Profile: MiroTalk">@<bdi>MiroTalk</bdi></a> in the latest version it works and the config is nearly perfect<br />
Only issue is still one identified erlier that anonymous users can create room if they go to the specific URL</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mirotalk" aria-label="Profile: MiroTalk">@<bdi>MiroTalk</bdi></a> said in <a href="/post/88298">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/avatar1024" aria-label="Profile: avatar1024">@<bdi>avatar1024</bdi></a> said in <a href="/post/88241">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">Otherwise, while guest cannot enter the app base domain without a login, they can still create rooms freely by creating a url: <a href="http://mirotalkappprefix.mydomain.com/join/roomname" target="_blank" rel="noopener noreferrer nofollow ugc">mirotalkappprefix.mydomain.com/join/roomname</a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mirotalk" aria-label="Profile: MiroTalk">@<bdi>MiroTalk</bdi></a> is that behaviour intended?</p>
</blockquote>
<p dir="auto">Not a behaviour intended!  I'm considering a refinement where guests are only allowed to join specified rooms that have already been created by authenticated users. This approach might offer better control and security. Will be released in the next version.</p>
</blockquote>
]]></description><link>https://forum.cloudron.io/post/91181</link><guid isPermaLink="true">https://forum.cloudron.io/post/91181</guid><dc:creator><![CDATA[cvachery]]></dc:creator><pubDate>Thu, 11 Jul 2024 08:53:17 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 01 Jul 2024 15:23:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cvachery" aria-label="Profile: cvachery">@<bdi>cvachery</bdi></a> said in <a href="/post/90683">Use Cloudron Logins for host protected settings</a>:</p>
<blockquote>
<p dir="auto">Thing is <a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> by default anyone can create/join a room. But I want to restrict room creation to logged in users and anyone can join with the link.</p>
</blockquote>
<p dir="auto">Ah, right. That ought to be default when choosing Cloudron user management, but I guess it isn't.</p>
]]></description><link>https://forum.cloudron.io/post/90686</link><guid isPermaLink="true">https://forum.cloudron.io/post/90686</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Mon, 01 Jul 2024 15:23:39 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 01 Jul 2024 15:21:19 GMT]]></title><description><![CDATA[<p dir="auto">I did the same but ticked <code>Allow all users from this Cloudron</code><br />
Thing is <a class="plugin-mentions-user plugin-mentions-a" href="/user/jdaviescoates" aria-label="Profile: jdaviescoates">@<bdi>jdaviescoates</bdi></a> by default anyone can create/join a room. But I want to restrict room creation to logged in users and anyone can join with the link.<br />
And when activating those parameters is when problems arise.</p>
]]></description><link>https://forum.cloudron.io/post/90683</link><guid isPermaLink="true">https://forum.cloudron.io/post/90683</guid><dc:creator><![CDATA[cvachery]]></dc:creator><pubDate>Mon, 01 Jul 2024 15:21:19 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 01 Jul 2024 15:08:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cvachery" aria-label="Profile: cvachery">@<bdi>cvachery</bdi></a> I'm confused by this thread.</p>
<p dir="auto">You shouldn't need to configue anything.</p>
<p dir="auto">Just select the relevant User management settings when installing and Cloudron sets it all up, no? <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f914.png?v=74f512c8ff7" class="not-responsive emoji emoji-android emoji--thinking_face" style="height:23px;width:auto;vertical-align:middle" title=":thinking_face:" alt="🤔" /></p>
<p dir="auto"><img src="/assets/uploads/files/1719846314911-screenshot_20240701-160422_firefox.png" alt="Screenshot_20240701-160422_Firefox.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.cloudron.io/post/90681</link><guid isPermaLink="true">https://forum.cloudron.io/post/90681</guid><dc:creator><![CDATA[jdaviescoates]]></dc:creator><pubDate>Mon, 01 Jul 2024 15:08:34 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 01 Jul 2024 15:01:49 GMT]]></title><description><![CDATA[<p dir="auto">You are right I misread the Dockerfile, thanks for pointing this out!</p>
<p dir="auto">Maybe it would it be easier to have an example of a <code>config.js </code> file in the documentation.<br />
I guess I'm not the only one failing to configure it <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f615.png?v=74f512c8ff7" class="not-responsive emoji emoji-android emoji--confused" style="height:23px;width:auto;vertical-align:middle" title=":/" alt="😕" /><br />
Do I need to create an <code>OpenID Connect Provider</code> in my Cloudron user directory?</p>
]]></description><link>https://forum.cloudron.io/post/90680</link><guid isPermaLink="true">https://forum.cloudron.io/post/90680</guid><dc:creator><![CDATA[cvachery]]></dc:creator><pubDate>Mon, 01 Jul 2024 15:01:49 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 01 Jul 2024 13:15:20 GMT]]></title><description><![CDATA[<p dir="auto">That file overwrites the upstream <code>config.js</code> in <a href="https://git.cloudron.io/cloudron/mirotalksfu-app/-/blob/main/Dockerfile?ref_type=heads#L13" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/cloudron/mirotalksfu-app/-/blob/main/Dockerfile?ref_type=heads#L13</a> and then loads the one in <code>/app/data/config.js</code> and then patches up the process internal config object. Only very specific config options are copied over though. For auth it is only those three essentially <a href="https://git.cloudron.io/cloudron/mirotalksfu-app/-/blob/main/config.js?ref_type=heads#L20" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/cloudron/mirotalksfu-app/-/blob/main/config.js?ref_type=heads#L20</a></p>
<p dir="auto">But maybe to take a step back, whatever is specified regarding oidc in the <code>/app/data/config.js</code> will get overwritten during runtime. So that is probably not the root cause of the issue you are facing.</p>
]]></description><link>https://forum.cloudron.io/post/90670</link><guid isPermaLink="true">https://forum.cloudron.io/post/90670</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 01 Jul 2024 13:15:20 GMT</pubDate></item><item><title><![CDATA[Reply to Use Cloudron Logins for host protected settings on Mon, 01 Jul 2024 13:06:48 GMT]]></title><description><![CDATA[<p dir="auto">Yes I got that it's a wrapper but this wrapper is never used neither in the <code>dockerfile</code> or <code>start.sh</code> so I don't get when this merge is done</p>
]]></description><link>https://forum.cloudron.io/post/90668</link><guid isPermaLink="true">https://forum.cloudron.io/post/90668</guid><dc:creator><![CDATA[cvachery]]></dc:creator><pubDate>Mon, 01 Jul 2024 13:06:48 GMT</pubDate></item></channel></rss>