<?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[Topics tagged with configuration]]></title><description><![CDATA[A list of topics that have been tagged with configuration]]></description><link>https://fusionauth.io/community/forum/tags/configuration</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 12:54:56 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/tags/configuration.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Is it possible to set the UI time display to European standard (dd&#x2F;mm&#x2F;yyyy)?]]></title><description><![CDATA[<p dir="auto">Hiya <a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/463">@hd_steve</a> !</p>
<p dir="auto">You can change the user's locale and the date format should change in the FusionAuth administrative user interface. More details here: <a href="https://fusionauth.io/community/forum/topic/718/how-do-i-change-the-localisation-timezone-for-the-fusionauth-ui?_=1614788141466">https://fusionauth.io/community/forum/topic/718/how-do-i-change-the-localisation-timezone-for-the-fusionauth-ui?_=1614788141466</a></p>
<p dir="auto">Let me know if that answers your question, please.</p>
<p dir="auto">Thanks,<br />
Dan</p>
]]></description><link>https://fusionauth.io/community/forum/topic/841/is-it-possible-to-set-the-ui-time-display-to-european-standard-dd-mm-yyyy</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/841/is-it-possible-to-set-the-ui-time-display-to-european-standard-dd-mm-yyyy</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Preload configuration]]></title><description><![CDATA[<p dir="auto">I think you are looking for kickstart: <a href="https://fusionauth.io/docs/v1/tech/installation-guide/kickstart" rel="nofollow ugc">https://fusionauth.io/docs/v1/tech/installation-guide/kickstart</a></p>
<p dir="auto">Here's how to run configure Kickstart to run when you are using docker: <a href="https://fusionauth.io/docs/v1/tech/installation-guide/docker/#kickstart" rel="nofollow ugc">https://fusionauth.io/docs/v1/tech/installation-guide/docker/#kickstart</a></p>
<p dir="auto">I'm not sure how you are starting your containers, but I imagine you could create and make a kickstart file available in other deployment environments also.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/690/preload-configuration</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/690/preload-configuration</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[How can we migrate FusionAuth configuration from dev&#x2F;qa to prod]]></title><description><![CDATA[<p dir="auto">For exporting changes, it depends on how you make the changes. There's a <a href="https://fusionauth.io/community/forum/topic/374/terraform-provider-for-fusionauth-released">community supported terraform module</a>, but it doesn't cover all the apis (PRs welcome!).</p>
<p dir="auto">You could also script all your changes using the API and apply those scripts to different environments. We mostly see folks writing migration scripts that call the APIs. These are very similar to database migration scripts except they make REST calls instead of SQL. The scripts are run during upgrades of their app. (If you are using an app like rails, you could even leverage the existing migration framework and a <a href="https://fusionauth.io/docs/v1/tech/client-libraries/" rel="nofollow ugc">client library</a>.)</p>
<p dir="auto"><a href="https://fusionauth.io/docs/v1/tech/installation-guide/kickstart" rel="nofollow ugc">Kickstart</a> works well for dev envts and CI, but doesn't handle changes (it assumes there is no data in fusionauth and won't run if it sees any).</p>
]]></description><link>https://fusionauth.io/community/forum/topic/549/how-can-we-migrate-fusionauth-configuration-from-dev-qa-to-prod</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/549/how-can-we-migrate-fusionauth-configuration-from-dev-qa-to-prod</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[maximum pool size configuration]]></title><description><![CDATA[<p dir="auto">You can use the database.maximum-pool-size value in the fusionauth.properties file prior to 1.19.x ( it was just not documented) , but if you want to use the environment variable version is not available until 1.19.x.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/403/maximum-pool-size-configuration</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/403/maximum-pool-size-configuration</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Any way to modify the elasticsearch index?]]></title><description><![CDATA[<p dir="auto">When you re-index, we delete our named index and rebuild it.</p>
<p dir="auto">You would probably be better off creating your own index.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/344/any-way-to-modify-the-elasticsearch-index</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/344/any-way-to-modify-the-elasticsearch-index</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Where is the configuration stored in the database?]]></title><description><![CDATA[<p dir="auto">There isn’t a single table in the db really. Configuration exists there, and in tenants, applications, etc.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/298/where-is-the-configuration-stored-in-the-database</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/298/where-is-the-configuration-stored-in-the-database</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Is there a way to force users to use two factor authentication?]]></title><description><![CDATA[<p dir="auto">Not with a FusionAuth policy, but you could enforce it just by checking the user during login, as twoFactorEnabled is an attribute of the user.</p>
<p dir="auto">There's also this github issue which you may want to vote up: <a href="https://github.com/FusionAuth/fusionauth-issues/issues/763" rel="nofollow ugc">https://github.com/FusionAuth/fusionauth-issues/issues/763</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/268/is-there-a-way-to-force-users-to-use-two-factor-authentication</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/268/is-there-a-way-to-force-users-to-use-two-factor-authentication</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Enforcing two factor configuration]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/2399">@mangeshp16</a> The original question is over two years old. Since version 1.42, you can enforce MFA at the tenant level (or the application level if you have the enterprise plan). This means that any user who logs in is required to have MFA. If they do not, they are redirected to <a href="https://fusionauth.io/docs/v1/tech/themes/template-variables#account-two-factor-enable" rel="nofollow ugc">a page</a> where they can set it up.</p>
<p dir="auto">There are other ways to accomplish this. You could build your own MFA page which would <a href="https://fusionauth.io/docs/v1/tech/guides/multi-factor-authentication#building-your-own-interface" rel="nofollow ugc">call the APIs directly</a>. When a user logs in, you can check to see if they have any twoFactor methods available and if they don't, you can send them to this page.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/267/enforcing-two-factor-configuration</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/267/enforcing-two-factor-configuration</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[What happens if I turn off database.mysql.enforce-utf8mb4 ?]]></title><description><![CDATA[<p dir="auto">Doing so will allow FusionAuth to run even when utf8mb4 is not configured properly. We added that enforcement to ensure the limitation is understood before you turn off the enforcement.</p>
<p dir="auto">The implication is that if you attempt to store a 4 byte unicode character the INSERT or UPDATE request will fail. The initial MySQL UTF-8 support only allowed for 3 byte characters, they then came out with utf8mb4 to support 4 byte characters.</p>
<p dir="auto">For example, many emoji are 4 byte characters, so if you tried to store a piece of text with a smiley such as 😁 it will fail. The 😁 is a four byte character, U+1F601 or \xF0\x9F\x98\x81.</p>
<p dir="auto">Unless you configure MySQL to use utf8mb4 any character points between U+10000 and U+10FFFF will fail to be stored.</p>
<p dir="auto">Extracted from <a href="https://github.com/FusionAuth/fusionauth-issues/issues/234#issuecomment-632757441" rel="nofollow ugc">https://github.com/FusionAuth/fusionauth-issues/issues/234#issuecomment-632757441</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/152/what-happens-if-i-turn-off-database-mysql-enforce-utf8mb4</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/152/what-happens-if-i-turn-off-database-mysql-enforce-utf8mb4</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[After the passwordless code has been issued, how long is it valid?]]></title><description><![CDATA[<p dir="auto">That's configurable at the tenant level.</p>
<p dir="auto">The default is 180 seconds, but it is customizable in the tenant settings: <a href="https://fusionauth.io/docs/v1/tech/guides/passwordless#one-time-code-customization" rel="nofollow ugc">https://fusionauth.io/docs/v1/tech/guides/passwordless#one-time-code-customization</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/131/after-the-passwordless-code-has-been-issued-how-long-is-it-valid</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/131/after-the-passwordless-code-has-been-issued-how-long-is-it-valid</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Is there a way to customize the Two Factor Code message that comes when the twilio integration is enabled?]]></title><description><![CDATA[<p dir="auto">This is not currently available.</p>
<p dir="auto">The plan is to build out SMS templates that can localized and customized but no timelines have been determined.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/14/is-there-a-way-to-customize-the-two-factor-code-message-that-comes-when-the-twilio-integration-is-enabled</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/14/is-there-a-way-to-customize-the-two-factor-code-message-that-comes-when-the-twilio-integration-is-enabled</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>