<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Support &amp; Community Forum - Recent Posts				            </title>
            <link>https://dcts.community/</link>
            <description>Welcome to the official website of DCTS. Feel free to join our forum. If you need help or have any questions about our application this is the right place to go.</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 04 Apr 2026 14:11:08 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>New documentation page!</title>
                        <link>https://dcts.community/main-forum/new-documentation-page/#post-168</link>
                        <pubDate>Sun, 01 Mar 2026 18:09:43 +0000</pubDate>
                        <description><![CDATA[Today i&#039;ve setup a new documentation page thats based on the latest version and can be found here:]]></description>
                        <content:encoded><![CDATA[<p>Today i've setup a new documentation page thats based on the latest version and can be found here:</p>
<p><a href="https://docs.dcts.community/" target="_blank" rel="noopener">https://docs.dcts.community/</a></p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>Angel™</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/main-forum/new-documentation-page/#post-168</guid>
                    </item>
				                    <item>
                        <title>RE: Do not use MySQL! Use MariaDB!</title>
                        <link>https://dcts.community/frequently-asked-questions/do-not-use-mysql-use-mariadb/#post-167</link>
                        <pubDate>Tue, 17 Feb 2026 21:10:53 +0000</pubDate>
                        <description><![CDATA[Hi thanks for pointing this out!
I have updated the docs yesterday or something in the beta version to explicitly state that MySQL is not compatible 
Tho i just realised i have a typo in i...]]></description>
                        <content:encoded><![CDATA[<p>Hi <strong>thanks</strong> for pointing this out!</p>
<p>I have updated <a href="https://github.com/hackthedev/dcts-shipping/blob/beta/docs/Getting%20started.md" target="_blank" rel="noopener">the docs</a> yesterday or something in the beta version to explicitly state that <strong>MySQL is not compatible</strong> </p>
<p>Tho i just realised i have a typo in it haha.</p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>Angel™</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/frequently-asked-questions/do-not-use-mysql-use-mariadb/#post-167</guid>
                    </item>
				                    <item>
                        <title>Do not use MySQL! Use MariaDB!</title>
                        <link>https://dcts.community/frequently-asked-questions/do-not-use-mysql-use-mariadb/#post-166</link>
                        <pubDate>Tue, 17 Feb 2026 11:27:34 +0000</pubDate>
                        <description><![CDATA[One of the current table setups as of this date in the beta branch has default values that do not work in MySQL - only MariaDB. If you run into this issue, uninstall MySQL and install MariaD...]]></description>
                        <content:encoded><![CDATA[<p>One of the current table setups as of this date in the beta branch has default values that do not work in MySQL - only MariaDB. If you run into this issue, uninstall MySQL and install MariaDB. </p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>aurora</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/frequently-asked-questions/do-not-use-mysql-use-mariadb/#post-166</guid>
                    </item>
				                    <item>
                        <title>RE: Nginx Reverse Proxy Livekit</title>
                        <link>https://dcts.community/guides/nginx-reverse-proxy-livekit/#post-165</link>
                        <pubDate>Tue, 17 Feb 2026 11:26:01 +0000</pubDate>
                        <description><![CDATA[Make sure the secret matches what the key is set to in livetalk.yaml (the config file you set in your systemd service file for livetalk)
Also do not forget to create a DNS A record for your...]]></description>
                        <content:encoded><![CDATA[<p>Make sure the secret matches what the key is set to in livetalk.yaml (the config file you set in your systemd service file for livetalk)</p>
<p>Also do not forget to create a DNS A record for your subdomain! I use a wildcard on Cloudfare's DNS management because all my subdomains are bound to a single IP.</p>
<pre contenteditable="false">        "livekit": {
            "enabled": true,
            "key": "dev",
            "secret": "",
            "url": "livekit.mydomain.com"
        },</pre>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>aurora</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/guides/nginx-reverse-proxy-livekit/#post-165</guid>
                    </item>
				                    <item>
                        <title>RE: Nginx Reverse Proxy Livekit</title>
                        <link>https://dcts.community/guides/nginx-reverse-proxy-livekit/#post-164</link>
                        <pubDate>Tue, 17 Feb 2026 11:23:12 +0000</pubDate>
                        <description><![CDATA[server {
    server_name livekit.mydomain.com;

    access_log  removed link ;
    error_log  removed link ;

    location / {
        proxy_pass
        proxy_http_version 1.1;
    ...]]></description>
                        <content:encoded><![CDATA[<pre contenteditable="false">server {
    server_name livekit.mydomain.com;

    access_log  <span style="color:#aaa">removed link</span> ;
    error_log  <span style="color:#aaa">removed link</span> ;

    location / {
        proxy_pass http://localhost:7880;
        proxy_http_version 1.1;
        proxy_set_header   Access-Control-Allow-Origin *;
        proxy_set_header   Upgrade            $http_upgrade;
        proxy_set_header   Connection         "upgrade";
        proxy_set_header   Host               $host;
        proxy_set_header   X-Real-IP          $remote_addr;
        proxy_set_header   X-Forwarded-For    $proxy_add_x_forwarded_for;
        proxy_set_header   X-Forwarded-Proto  $scheme;
    }

    listen 443 ssl; # managed by Certbot
    ssl_certificate  <span style="color:#aaa">removed link</span> ; # managed by Certbot
    ssl_certificate_key  <span style="color:#aaa">removed link</span> ; # managed by Certbot
    include  <span style="color:#aaa">removed link</span> ; # managed by Certbot
    ssl_dhparam  <span style="color:#aaa">removed link</span> ; # managed by Certbot

}

server {
    if ($host = livekit.mydomain.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    listen 80;

    server_name livekit.mydomain.com;
    return 404; # managed by Certbot
}</pre>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>aurora</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/guides/nginx-reverse-proxy-livekit/#post-164</guid>
                    </item>
				                    <item>
                        <title>Nginx Reverse Proxy Livekit</title>
                        <link>https://dcts.community/guides/nginx-reverse-proxy-livekit/#post-163</link>
                        <pubDate>Tue, 17 Feb 2026 11:14:32 +0000</pubDate>
                        <description><![CDATA[I had another WebRTC server application running on my hardware (a nextcloud talk instance) so I needed a custom configuration. I didn&#039;t go through the automated installer so ended up doing s...]]></description>
                        <content:encoded><![CDATA[<p>I had another WebRTC server application running on my hardware (a nextcloud talk instance) so I needed a custom configuration. I didn't go through the automated installer so ended up doing some manual things, including installing livekit from scratch while setting up the configuration. </p>
<p>Things to note for a Linux Install:</p>
<ul>
<li>The livekit server runs multiple servers. DSTC connects to livekit on port 7880. This needs a reverse proxy to run. There is a section in your DSTC configuration file (I installed DSTC to /opt instead of /home, so mine is at /opt/dstc/configs in config.json) where you need to set your domain. Do not include the protocol - only include the domain name (livetalk.yourdomain.com). </li>
<li>The configuration file that livetalk actually uses can be changed in the systemd services file for livetalk. If you think there is an error, connect to your DSTC server and take a look at your console network traffic as well as your headers. Try starting the livetalk server manually as well (`sudo livetalk-server --config /path/to/livetalk/yaml/file`)</li>
<li>I had to change the port in my livetalk.yaml file as 3478 was already in use by a nextcloud talk app. I just changed it to 3479 without any issues seeminly</li>
</ul>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>aurora</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/guides/nginx-reverse-proxy-livekit/#post-163</guid>
                    </item>
				                    <item>
                        <title>The forum is back!</title>
                        <link>https://dcts.community/main-forum/the-forum-is-back/#post-162</link>
                        <pubDate>Tue, 17 Feb 2026 00:25:41 +0000</pubDate>
                        <description><![CDATA[After a year the forum was revived! Crazy to think its already 2 years old!
Its planned to use the forum as a home for pretty much anything and fallback in case something goes wrong with re...]]></description>
                        <content:encoded><![CDATA[<p><strong>After a year</strong> the forum was revived! Crazy to think its already 2 years old!</p>
<p>Its planned to use the forum as a home for pretty much anything and fallback in case something goes wrong with reddit or the main instance.</p>
<p>Our community has been growing insanely big over time in a relative short amount of time and im very excited to see where it'll go!</p>
<p>so,</p>
<p><strong><span style="font-size: 36pt">welcome back!</span></strong></p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>Angel™</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/main-forum/the-forum-is-back/#post-162</guid>
                    </item>
				                    <item>
                        <title>New Subreddit</title>
                        <link>https://dcts.community/main-forum/new-subreddit/#post-133</link>
                        <pubDate>Thu, 02 Jan 2025 20:47:51 +0000</pubDate>
                        <description><![CDATA[I made a new subreddit to better connect with the community. It can be found here:
reddit.com/r/dcts/]]></description>
                        <content:encoded><![CDATA[<p>I made a new subreddit to better connect with the community. It can be found here:</p>
<p><a href="https://www.reddit.com/r/dcts/" target="_blank" rel="noopener">reddit.com/r/dcts/</a></p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>Angel™</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/main-forum/new-subreddit/#post-133</guid>
                    </item>
				                    <item>
                        <title>Rough Feature List</title>
                        <link>https://dcts.community/discussions/rough-feature-list/#post-119</link>
                        <pubDate>Mon, 29 Jul 2024 23:46:24 +0000</pubDate>
                        <description><![CDATA[This is a rough feature set from the release v3.4.6.

You can create multiple groups that have their own dedicated channel tree. Groups act like &quot;sub-servers&quot;.


each group has its own ...]]></description>
                        <content:encoded><![CDATA[<p class="first:mt-0 last:mb-0" dir="ltr">This is a rough feature set from the release v3.4.6.</p>
<ul>
<li value="1"><span>You can create multiple groups that have their own dedicated channel tree. Groups act like "sub-servers".</span></li>
<li class="list-none" value="2">
<ul>
<li value="1"><span>each group has its own permissions, banner, icon etc </span></li>
</ul>
</li>
<li value="2"><span>There is a new markdown editor for easy formatting</span></li>
<li value="3"><span>The UI was reworked to be more mobile friendly</span></li>
<li value="4"><span>You can edit messages</span></li>
<li value="5"><span>You can talk with friends using built in WebRTC in real time. working but somewhat experimental.</span></li>
<li value="6"><span>You can create custom roles and edit specific permissions. You can also color them</span></li>
<li value="7"><span>Its possible to create text and voice channels for now and adjust permissions for each channel</span></li>
<li value="8"><strong>you can host it yourself giving you full control</strong></li>
<li value="9"><span>members can set</span></li>
<li class="list-none" value="10">
<ul>
<li value="1"><span>a profile picture</span></li>
<li value="2"><span>a banner</span></li>
<li value="3"><span>a status</span></li>
<li value="4"><span>a about me text</span></li>
<li value="5"><span>edit their username / display name</span></li>
</ul>
</li>
<li value="10"><span>you can upload files to the server and share it. </span></li>
<li class="list-none" value="11">
<ul>
<li value="1"><span>a upload size limit can be set for each role. default is set to 7MB. </span></li>
<li value="2"><span>You could make a "Donator" role whos upload limit is increased.</span></li>
<li value="3"><span>Theoretically supports large files depending on config.</span></li>
</ul>
</li>
<li value="11"><span>there is embed support for certain files like mp3, youtube embeds, video embeds and image embeds. urls will turn into clickable links</span></li>
<li value="12"><span>you can ban, kick, mute members.</span></li>
<li class="list-none" value="13">
<ul>
<li value="1"><strong>its possible to mute permanent</strong></li>
<li value="2"><strong>You can specify a reason that will be displayed to the member (optional)</strong></li>
</ul>
</li>
<li value="13"><span>Plugin system introduced</span></li>
<li class="list-none" value="14">
<ul>
<li value="1"><span>In the future there might be cool plugins that extend functionality.</span></li>
</ul>
</li>
<li value="14"><span>admins can delete messages of other members.</span></li>
<li value="15"><span>SQL Support (great for bigger servers and or performence)</span></li>
<li class="list-none" value="16">
<ul>
<li value="1"><span>You only need to provide a database name and login details for a account to access said database. the structure needed will be generated by the app for you.</span></li>
</ul>
</li>
<li value="16"><span>Media cache for embed url detection</span></li>
<li value="17"><span>You can generate a key for every role that a user can enter to join a role.</span></li>
<li class="list-none" value="18">
<ul>
<li value="1"><span>Works similar to how you were able to get admin perms on TeamSpeak</span></li>
<li value="2"><span>Could be used to giveaway special roles in giveaways</span></li>
</ul>
</li>
<li value="18"><span>Tenor Gif Search Feature</span></li>
<li class="list-none" value="19">
<ul>
<li value="1"><span>Requires you to setup api keys in the config</span></li>
<li value="2"><span>tutorial soon</span></li>
</ul>
</li>
<li value="19"><span>Emoji Feature</span></li>
<li class="list-none" value="20">
<ul>
<li value="1"><span>You can upload custom pngs to use as emoji</span></li>
</ul>
</li>
<li value="20"><span>You can mention members using right click -&gt; mention on username</span></li>
<li class="list-none" value="21">
<ul>
<li value="1"><span>@ username mentions will be working in the future as well</span></li>
<li value="2"><span>same for :emoji: auto-complete and preview</span></li>
</ul>
</li>
<li value="21"><span>Cloudflare Image CDN Support</span></li>
<li class="list-none" value="22">
<ul>
<li value="1"><span>You can configurate Cloudflare's Image CDN rather then storing uploaded images on the server directly. Great for bigger servers as example</span></li>
</ul>
</li>
<li value="22"><span>Docker Support</span></li>
<li class="list-none" value="23">
<ul>
<li value="1"><span>Thanks to the contributors on github &lt;3</span></li>
</ul>
</li>
</ul>
<p class="first:mt-0 last:mb-0" dir="ltr"><br /><span>I have a lot of features planned and i still need to implement a lot but i love working on it and with every update the app is getting better. the list i made is from my head now so i might have forgot some things.</span></p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>Angel™</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/discussions/rough-feature-list/#post-119</guid>
                    </item>
				                    <item>
                        <title>RE: Upcoming Update &amp; Improvements / Dev Preview</title>
                        <link>https://dcts.community/main-forum/upcoming-update-important/#post-115</link>
                        <pubDate>Sat, 20 Jul 2024 23:41:17 +0000</pubDate>
                        <description><![CDATA[Update Previews will be available here on github now]]></description>
                        <content:encoded><![CDATA[<p>Update Previews will be available <a href="https://github.com/hackthedev/dcts-shipping/discussions/categories/update-previews" target="_blank" rel="noopener">here on github now</a></p>]]></content:encoded>
						                            <category domain="https://dcts.community/"></category>                        <dc:creator>Angel™</dc:creator>
                        <guid isPermaLink="true">https://dcts.community/main-forum/upcoming-update-important/#post-115</guid>
                    </item>
							        </channel>
        </rss>
		