<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Server on ZoliBen Csupra(Kabra)</title><link>https://zoliben.com/en/tags/server/</link><description>Recent content in Server on ZoliBen Csupra(Kabra)</description><generator>Hugo</generator><language>en</language><lastBuildDate>Tue, 16 Mar 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://zoliben.com/en/tags/server/index.xml" rel="self" type="application/rss+xml"/><item><title>Docker – Matrix Synapse homeserver, federation, nginx reverse proxy and TURN server setup using docker-compose</title><link>https://zoliben.com/en/posts/2021-03-16-/</link><pubDate>Tue, 16 Mar 2021 00:00:00 +0000</pubDate><guid>https://zoliben.com/en/posts/2021-03-16-/</guid><description>&lt;p>Recently I set up a &lt;a href="https://en.wikipedia.org/wiki/Matrix_%28protocol%29">Matrix&lt;/a> homeserver for my friend group. I considered whether I needed federation, and ultimately decided that I did. On top of that, I also had to set up a TURN server so that calls would work properly for everyone, since if someone is behind NAT, the connection typically doesn’t work reliably. I launched the container on a Hetzner cloud VPS running Debian 10.&lt;/p>
&lt;p> &lt;/p>
&lt;p>You’ll need a running Docker service, if it’s not installed yet, you can easily install it using &lt;a href="https://get.docker.com/">https://get.docker.com/&lt;/a>. I recommend creating a git repository where you can push your docker-compose and nginx config files.&lt;/p></description></item><item><title>Revoked – Migrating from Teamspeak to Discord</title><link>https://zoliben.com/en/posts/2018-08-13-koltozes-discord-ra-a-teamspeak-szerverrol/</link><pubDate>Mon, 13 Aug 2018 17:09:27 +0000</pubDate><guid>https://zoliben.com/en/posts/2018-08-13-koltozes-discord-ra-a-teamspeak-szerverrol/</guid><description>&lt;p>Hi everyone,&lt;/p>
&lt;h3 id="you-can-join-the-discord-server-here">&lt;strong>&lt;a href="https://discord.gg/hMAu95S">You can join the Discord server here.&lt;/a>&lt;/strong>&lt;/h3>
&lt;p>&lt;del>The Teamspeak client updated itself, and the new 3.3.0 version is no longer compatible with my old Teamspeak server. I updated the server, but all settings were lost and I can’t migrate them. It recognizes my non-profit license, but if I set it to more than 32 slots, the server automatically shuts itself down. I messed around with this for a good while, but I’ve had enough, so the server will no longer be running.&lt;/del>&lt;/p></description></item><item><title>TeamSpeak Server Rules</title><link>https://zoliben.com/en/posts/2017-06-30-teamspeak-szerver-szabalyzat/</link><pubDate>Fri, 30 Jun 2017 14:03:27 +0000</pubDate><guid>https://zoliben.com/en/posts/2017-06-30-teamspeak-szerver-szabalyzat/</guid><description>&lt;p>On the TeamSpeak server, I ask that you follow the following:&lt;/p>
&lt;p>– Behave like a reasonable human being.&lt;br>
– Don’t be childish, don’t insult others, follow the rules of netiquette, along with basic norms.&lt;br>
– Don’t enter someone else’s TeamSpeak room if you weren’t invited.&lt;br>
– Recording conversations is only allowed if everyone in the room has agreed to it.&lt;br>
– The room name must not be offensive to anyone.&lt;br>
– The server is DDoS protected, but please don’t invite script kiddies here.&lt;/p></description></item><item><title>Full Web Server Installation (nginx, MySQL, PHP7, HTTP2, phpMyAdmin, SSL) – Ubuntu 16.04</title><link>https://zoliben.com/en/posts/2016-08-22-teljes-webszerver-telepitese-nginx-mysql-php5-phpmyadmin/</link><pubDate>Mon, 22 Aug 2016 12:37:55 +0000</pubDate><guid>https://zoliben.com/en/posts/2016-08-22-teljes-webszerver-telepitese-nginx-mysql-php5-phpmyadmin/</guid><description>&lt;p>&lt;span style="text-decoration: underline;">&lt;em>&lt;strong>This guide applies to Ubuntu 16.04, I&amp;rsquo;ll cover other versions later.&lt;/strong>&lt;/em>&lt;/span>&lt;/p>
&lt;p>&lt;strong>1. Installing Nginx&lt;/strong>&lt;br>
First, let&amp;rsquo;s update the repos:&lt;/p>
&lt;pre>sudo apt-get update&lt;/pre>
&lt;p>Then install nginx:&lt;/p>
&lt;pre>sudo apt-get install nginx&lt;/pre>
&lt;p>Then check the nginx version with the following command:&lt;/p>
&lt;pre>nginx -v&lt;/pre>
&lt;p>If we get at least version 1.10.0, everything is fine.&lt;/p>
&lt;p>&lt;strong>2. Installing MySQL&lt;/strong>&lt;br>
The first step is to install the MySQL server:&lt;/p>
&lt;pre>sudo apt-get install mysql-server&lt;/pre>
&lt;p>Naturally, you need to fill in the root user&amp;rsquo;s password, which you&amp;rsquo;ll use to access MySQL later.&lt;br>
For PHP pages to run, you need to install PHP version 5 and its associated MySQL instruction set:&lt;/p></description></item><item><title>Installing Squid Proxy on Ubuntu Server</title><link>https://zoliben.com/en/posts/2016-02-09-squid-proxy-telepitese-ubuntu-szerverre/</link><pubDate>Tue, 09 Feb 2016 19:10:16 +0000</pubDate><guid>https://zoliben.com/en/posts/2016-02-09-squid-proxy-telepitese-ubuntu-szerverre/</guid><description>&lt;p>First, let&amp;rsquo;s update the repositories:&lt;/p>
&lt;pre>apt-get update&lt;/pre>
&lt;p>Then install the proxy software and the associated password generator:&lt;/p>
&lt;pre>apt-get install squid apache2-utils&lt;/pre>
&lt;p>Once that&amp;rsquo;s done, let&amp;rsquo;s create an empty configuration file:&lt;/p>
&lt;pre>rm -rf /etc/squid/squid.conf
touch /etc/squid/squid.conf
chown proxy /etc/squid/squid.conf&lt;/pre>
&lt;p>Then create the password file:&lt;/p>
&lt;pre>touch /etc/squid/squid_passwd&lt;/pre>
&lt;p>Then grant permissions to the proxy:&lt;/p>
&lt;pre>chown proxy /etc/squid/squid_passwd&lt;/pre>
&lt;p>Start editing the configuration file:&lt;/p>
&lt;pre>nano /etc/squid/squid.conf&lt;/pre>
&lt;p>and add the following lines (for http_port, specify the port you want to connect to the proxy on):&lt;/p></description></item><item><title>Call of Duty: United Offensive Linux Server and Other Goodies</title><link>https://zoliben.com/en/posts/2015-11-15-call-of-duty-united-offensive-linux-szerver-es-mas-finomsagok/</link><pubDate>Sun, 15 Nov 2015 14:17:47 +0000</pubDate><guid>https://zoliben.com/en/posts/2015-11-15-call-of-duty-united-offensive-linux-szerver-es-mas-finomsagok/</guid><description>&lt;p>I&amp;rsquo;ve been planning for a long time to write a guide about one of my favorite games, Call of Duty United Offensive. For me, this was the best game back in the day alongside MoHAA, because IT HAD TANKS!&lt;/p>
&lt;p>We played the hell out of it on Kursk, Carentan, Fox, and the Bas maps.&lt;/p>
&lt;p>I feel like because of all the fun I had, I owe it to the game to not let it disappear into obscurity, so below I&amp;rsquo;ll describe how to set up a Linux dedicated server, how to configure 1920x1080p resolution, which ports need to be opened, and maybe I&amp;rsquo;ll even have time to cover mods.&lt;/p></description></item><item><title>Garry's Mod Server</title><link>https://zoliben.com/en/posts/2015-04-22-garrys-mod-szerver/</link><pubDate>Wed, 22 Apr 2015 20:51:36 +0000</pubDate><guid>https://zoliben.com/en/posts/2015-04-22-garrys-mod-szerver/</guid><description>&lt;p>Behold! Our Garry&amp;rsquo;s Mod server has (once again) opened!&lt;/p>
&lt;p>Its fantastic name is: [HUN] ZoliBen Csupra(kabra) – fittingly&lt;/p>
&lt;p>To make everything run smoothly on the server, it&amp;rsquo;s recommended to download &lt;a href="http://steamcommunity.com/sharedfiles/filedetails/?id=222481251" target="_blank">this addon pack&lt;/a>.&lt;/p>
&lt;p> &lt;/p>
&lt;p>How can you connect to this fantastic server? Simply add this IP address to your favorites list!&lt;/p>
&lt;p>IP: 87.117.200.66:27015&lt;/p>
&lt;p> &lt;/p>
&lt;p>The rules are written on the server, please follow them. Currently there are two admins, ZoliBen (me), and gtadam (when his PC isn&amp;rsquo;t crashing)&lt;/p></description></item><item><title>TF2 – Surf Server</title><link>https://zoliben.com/en/posts/2015-04-01-tf2-surf-szerver/</link><pubDate>Wed, 01 Apr 2015 10:07:02 +0000</pubDate><guid>https://zoliben.com/en/posts/2015-04-01-tf2-surf-szerver/</guid><description>&lt;p>Back in 2008-2009 I surfed a lot in TF2, and the other day I started a poll on the server to see who would be interested in a surf server. (it&amp;rsquo;s not hosted locally in Hungary, so the ping is a bit higher) The poll ended positively, so here&amp;rsquo;s the server:&lt;/p>
&lt;p>&lt;strong>IP address: 5.45.181.158:27015&lt;/strong>&lt;/p>
&lt;p>The buttons on the maps can be used as follows: you need to bind the +use command to a key, which you can do like this:&lt;/p></description></item><item><title>HLSTATX:CE on the Dusty Mice Purgatory &amp; thoughts</title><link>https://zoliben.com/en/posts/2015-03-02-hlstatxce-a-porosodo-pockok-purgatoriuman-gondolatok/</link><pubDate>Mon, 02 Mar 2015 16:45:54 +0000</pubDate><guid>https://zoliben.com/en/posts/2015-03-02-hlstatxce-a-porosodo-pockok-purgatoriuman-gondolatok/</guid><description>&lt;p>I&amp;rsquo;m happy to announce that I finally managed to install the HLstatX Community Edition plugin on my Dusty Mice Purgatory (tf2) server, which allows tracking people&amp;rsquo;s statistics. The statistics can be accessed in-game, or here on my website. You can find the link &lt;a title="HERE" href="https://zoliben.com/stats/hlstats.php" target="_blank">HERE&lt;/a>, as well as on the right side of the website next to the server IP address.&lt;/p>
&lt;p> &lt;/p>
&lt;p>The other thing I want to talk about (for quite a while now) is the problem with players who are „too good” at this game. Don&amp;rsquo;t laugh at this, of course they have every right to be good if they&amp;rsquo;ve played x thousand hours. The problems start when these people take themselves way too seriously on a casual fooling-around orange server, and completely humiliate casual players (who usually have at most 1-200 hours).&lt;/p></description></item><item><title>Installing Plex Media Server on Ubuntu Server</title><link>https://zoliben.com/en/posts/2015-01-03-plex-mediaszerver-telepitese-ubuntu-szerverre/</link><pubDate>Fri, 02 Jan 2015 23:02:57 +0000</pubDate><guid>https://zoliben.com/en/posts/2015-01-03-plex-mediaszerver-telepitese-ubuntu-szerverre/</guid><description>&lt;p>For the installation, we need the media server file matching our system from the Plex website, which &lt;a href="https://plex.tv/downloads" target="_blank">can be found here&lt;/a>.&lt;/p>
&lt;p>Copying the package download link, download it to the VPS or server machine:&lt;/p>
&lt;pre>wget https://downloads.plex.tv/plex-media-server/0.9.15.3.1674-f46e7e6/plexmediaserver_0.9.15.3.1674-f46e7e6_amd64.deb&lt;/pre>
&lt;p>Then install the downloaded file:&lt;/p>
&lt;pre>dpkg --install plexmediaserver_0.9.15.3.1674-f46e7e6_amd64.deb&lt;/pre>
&lt;p>If it complains about missing dependencies, you can install them with the following command:&lt;/p>
&lt;pre>apt-get -f install&lt;/pre>
&lt;p>Then navigate to the &lt;strong>/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/&lt;/strong> directory, and edit the &lt;strong>Preferences.xml&lt;/strong> file using nano or vi, by adding the following line after the Preferences word in the file (replacing 1.2.3.4 with your own IP address):&lt;/p></description></item><item><title>Another VPS in My Possession</title><link>https://zoliben.com/en/posts/2014-12-30-ujabb-vps-a-birtokomban/</link><pubDate>Mon, 29 Dec 2014 23:03:05 +0000</pubDate><guid>https://zoliben.com/en/posts/2014-12-30-ujabb-vps-a-birtokomban/</guid><description>&lt;p>Today I came across an interesting package from the provider MyRSK, first on lowendtalk, which I only glanced at, then my friend linked it to me and pointed out certain details. I didn&amp;rsquo;t hesitate any longer, I&amp;rsquo;d been looking for a decent VPS with relatively lots of RAM and no monthly payment, so I ordered the package, which has the following specs:&lt;/p>
&lt;ul>
&lt;li>2 shared CPU cores&lt;/li>
&lt;li>200 GB HDD&lt;/li>
&lt;li>2 TB monthly data transfer&lt;/li>
&lt;li>2 GB RAM&lt;/li>
&lt;/ul>
&lt;p>I ran a quick benchmark on it, here are the results:&lt;/p></description></item><item><title>MOHAA Dedicated Server on Ubuntu 12.04</title><link>https://zoliben.com/en/posts/2014-12-14-mohaa-dedikalt-szerver-ubuntu-12-04-en/</link><pubDate>Sun, 14 Dec 2014 10:02:47 +0000</pubDate><guid>https://zoliben.com/en/posts/2014-12-14-mohaa-dedikalt-szerver-ubuntu-12-04-en/</guid><description>&lt;p>Back in the day I played Medal of Honor Allied Assault a lot, I think it&amp;rsquo;s the best game in the series and my personal favorite. Yesterday I somehow felt like picking the game up again, but I ran into several issues. For one, I don&amp;rsquo;t have a DVD drive in my PC, I somehow managed to tear off the CD keys from my Warchest collection, plus with GameSpy shutting down, it wasn&amp;rsquo;t really possible to find servers. After a bit of searching online, I found the modded version of MOHAA (plus Breakthrough and Spearhead), where they replace the GameSpy server browser, add FullHD resolution support and whatnot. (plus it runs perfectly on win 8.1 64 bit) The download from their server was pretty slow, so I uploaded it here as a mirror, which you can download from the &lt;a title="Downloads" href="https://zoliben.com/letoltesek/" target="_blank">Downloads&lt;/a> page, or from &lt;a title="here" href="https://zoliben.com/egyeb/MOH_REVIVAL.exe" target="_blank">here&lt;/a>.&lt;/p></description></item><item><title>Installing OpenVPN server on Ubuntu server</title><link>https://zoliben.com/en/posts/2014-11-13-openvpn-szerver-telepitese-ubuntu-szerverre/</link><pubDate>Thu, 13 Nov 2014 20:02:26 +0000</pubDate><guid>https://zoliben.com/en/posts/2014-11-13-openvpn-szerver-telepitese-ubuntu-szerverre/</guid><description>&lt;p>I searched the internet a lot before a friend recommended this script, with which you can easily set up your own secure OpenVPN server.&lt;/p>
&lt;p>What you&amp;rsquo;ll need:&lt;/p>
&lt;ul>
&lt;li>PuTTY or any other SSH client capable of establishing a connection&lt;/li>
&lt;li>A server/VPS running Ubuntu 18.04 or 19.04&lt;/li>
&lt;li>For VPS: enabled TUN/TAP modules&lt;/li>
&lt;li>Minimal command-line knowledge&lt;/li>
&lt;/ul>
&lt;p> &lt;/p>
&lt;p>First, you need to download the script, which you can do by running the following command:&lt;/p>
&lt;hr>
&lt;pre>&lt;em>curl -O https://raw.githubusercontent.com/angristan/openvpn-install/master/openvpn-install.sh &amp;&amp; chmod +x openvpn-install.sh&lt;/em>&lt;/pre>
&lt;hr>
&lt;p>Run the script with root privileges:&lt;/p></description></item></channel></rss>