<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>server — LowEndSpirit</title>
        <link>https://staging.lowendspirit.com/index.php?p=/</link>
        <pubDate>Sat, 11 Apr 2026 14:58:10 +0000</pubDate>
        <language>en</language>
            <description>server — LowEndSpirit</description>
    <atom:link href="https://staging.lowendspirit.com/index.php?p=/discussions/tagged/server/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Dedicated Servers Back in Stock ϟ Dallas, TX  ϟ Path.net DDoS protection</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/4198/dedicated-servers-back-in-stock-%CF%9F-dallas-tx-%CF%9F-path-net-ddos-protection</link>
        <pubDate>Thu, 26 May 2022 17:10:21 +0000</pubDate>
        <category>Offers</category>
        <dc:creator>Ian_Dot_Tech</dc:creator>
        <guid isPermaLink="false">4198@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Thanks for checking out our ad! Feel free to ask any questions you may have!</p>

<p>Supported Operating Systems:<br />
CentOS, Ubuntu, Debian, Fedora, Suse, and others (open a ticket)!</p>

<p>Payment Methods:<br />
PayPal, Credit Card, CryptoCurrency</p>

<p>Contact us here:<br />
Discord<br />
<a href="https://discord.gg/X7Ekvdd" rel="nofollow">https://discord.gg/X7Ekvdd</a></p>

<p>Tickets<br />
<a href="https://billing.leveloneservers.com/submitticket.php?step=2&amp;deptid=6" rel="nofollow">https://billing.leveloneservers.com/submitticket.php?step=2&amp;deptid=6</a></p>

<p>DDoS Protection:<br />
The DDoS protection we offer is provided by Path.ne</p>

<p>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-<br />
DALLAS, TEXAS<br />
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-</p>

<p>Looking Glass: <a href="https://dal.lg.leveloneservers.com/" rel="nofollow">https://dal.lg.leveloneservers.com/</a></p>

<p>DS-4 | E3-1270v2 | 1x 480GB SSD | 32GB<br />
32GB RAM<br />
1x 480GB SSD Storage<br />
1Gbps Uplink<br />
IPv4 /29 (5 usable IPs) + IPv6 /64 Subnet<br />
10TB Bandwidth<br />
Dallas, TX Location<br />
$54.99 USD Monthly<br />
<a href="https://billing.leveloneservers.com/cart.php?a=add&amp;pid=45" rel="nofollow">https://billing.leveloneservers.com/cart.php?a=add&amp;pid=45</a></p>

<p>DS-70 | E3-1281 v3 | 1x 1TB SSD | 32GB<br />
32GB DDR3 RAM<br />
1x 1TB SSD Storage<br />
1Gbps Uplink<br />
IPv4 /29 (5 usable IPs) + IPv6 /64 Subnet<br />
10TB Bandwidth<br />
Dallas, TX Location<br />
Included DDoS Protection<br />
$64.00 USD Monthly<br />
<a href="https://billing.leveloneservers.com/cart.php?a=add&amp;pid=145" rel="nofollow">https://billing.leveloneservers.com/cart.php?a=add&amp;pid=145</a></p>
]]>
        </description>
    </item>
    <item>
        <title>Any Kimsufi or storage server willing to transfer</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/3231/any-kimsufi-or-storage-server-willing-to-transfer</link>
        <pubDate>Sat, 14 Aug 2021 06:49:06 +0000</pubDate>
        <category>Requests</category>
        <dc:creator>Sanjue007</dc:creator>
        <guid isPermaLink="false">3231@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>As the topic says does anyone have a kimsufi or any other low end server mostly looking for 500GB or More Storage.</p>

<p>Thanks.</p>
]]>
        </description>
    </item>
    <item>
        <title>HTTP Server Setup with a Single Command Line</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/3931/http-server-setup-with-a-single-command-line</link>
        <pubDate>Mon, 21 Mar 2022 20:31:31 +0000</pubDate>
        <category>LES Talk</category>
        <dc:creator>alexxgg</dc:creator>
        <guid isPermaLink="false">3931@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><em>Written by <a href="https://staging.lowendspirit.com/index.php?p=/profile/alexxgg" rel="nofollow">@alexxgg</a>, 19 May 2021</em><br />
<small>Article was migrated from WordPress to Vanilla in March 2022</small></p>

<p>
  <img src="https://talk.lowendspirit.com/uploads/editor/y9/8lyyu4b1q32d.png" alt="image" />
</p>

<p>This is a guest post by <a rel="nofollow" href="https://talk.lowendspirit.com">forum</a> user <a href="https://staging.lowendspirit.com/index.php?p=/profile/alexxgg" rel="nofollow">@alexxgg</a>,</p>

<p>Hi there!</p>

<p>These days when the internet shares things in milliseconds, who of you have needed to share a file quickly? I bet some of you remember at least one time one of those cases.</p>

<p>As you probably know, in terms of web servers, we can share files with popular software like Apache, Nginx, and Lighttpd but this software need basic configuration, also they consume server resources as long as they’re active.</p>

<p>What if you could set up a basic HTTP web server without installing Apache, Nginx, or Lighttpd? Well, that’s sounds kind of impossible, and even more unbelievable is that you can kill it with Ctrl^C. Thanks to Python3 we can do that with its <a rel="nofollow" href="https://pypi.org/project/httpserver/">HTTP server module</a>.</p>

<p>This module will deploy an HTTP server in any directory of the server, even in the root directory and that sounds ridiculously dangerous, fortunately, the default port of this HTTP server isn’t 80. Instead, it will use port: 8000 but you can assign a custom port, very convenient for NAT environment instances.</p>

<p>Now you can deploy a basic HTTP server -in the current directory with the default port- by typing this single command line:</p>

<pre><code>python3 -m http.server
</code></pre>

<p>Starting HTTP Server</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/05/lopja74fwxsh.png" alt="" title="" /></p>

<p>Killing HTTP Server</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/j0/nzh2vdl7fq70.png" alt="" title="" /></p>

<p>HTTP Server as Shown in Browser</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/ic/4ppesu0bamvj.png" alt="" title="" /></p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/81/dmmmh9vc0eds.png" alt="" title="" /></p>

<p>You can change the default port (example port: 32085) and specify a directory (example directory: /tmp/) with:</p>

<pre><code>python3 -m http.sever 32085 --directory /tmp/
</code></pre>

<p>More information about Python3 httpserver module is available <a rel="nofollow" href="https://docs.python.org/3/library/http.server.html">here</a></p>

<p>Also, there is a github page <a rel="nofollow" href="https://github.com/freelamb/simple_http_server">here</a></p>

<p><strong>Note</strong>: of course, you will need to install Python3 in order to use these post example command lines.<br />
Leave a comment to let me know any questions or suggestions.</p>
]]>
        </description>
    </item>
    <item>
        <title>Small Infrastructure Server</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/854/small-infrastructure-server</link>
        <pubDate>Thu, 02 Apr 2020 17:44:22 +0000</pubDate>
        <category>General</category>
        <dc:creator>FlamingSpaceJunk</dc:creator>
        <guid isPermaLink="false">854@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I'm in the market for a small infrastructure server. Something with in the home NAS form factor that I can install my own OS on.</p>

<p>Candidates:</p>

<ul>
<li><a rel="nofollow" href="https://kobol.io/#" title="Helios64">Kobol Helios64</a></li>
<li><a rel="nofollow" href="https://buy.hpe.com/us/en/servers/proliant-microserver/proliant-microserver/proliant-microserver/hpe-proliant-microserver-gen10/p/1009955118" title="HPE Proliant Microserver Gen10">HPE Proliant Microserver Gen10</a></li>
<li>Shuttle Cube</li>
<li><a rel="nofollow" href="https://www.supermicro.com/en/products/system/midtower/5028/SYS-5028D-TN4T.cfm" title="Supermicro SuperServer Embedded Mini-ITX IoT Tower">Supermicro SuperServer Embedded Mini-ITX IoT Tower<br />
</a></li>
</ul>

<p>Specs:</p>

<ul>
<li>4x+ real cores (preferably without SMT)</li>
<li>8-16GB RAM (ECC preferred)</li>
<li><p>6x disks</p>

<ul>
<li>2x boot</li>
<li>4x storage (preferably in an external hotswap cage, which is what I really want)</li>
</ul></li>
<li><p>2x+ USB 3.1 or up (for backing up the backups)</p></li>
<li>IPMI/BMC/Remote management (this would be a plus)</li>
</ul>

<p>Uses:</p>

<ul>
<li>Backups (mostly)</li>
<li>Tertiary DNS</li>
<li>Internal monitoring</li>
<li>Admin tools (Ansible and such)</li>
<li>Jump server so I only have to log into one thing when remote</li>
</ul>

<p>This is something I've been looking for a while, and I've never really been able to find something that checks all of the boxes. Everything ends up being in the mini-tower form factor.</p>

<p>I thought I would see if anyone had any ideas.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
