arrow_upward

Posted by: abi - 11-14-2015, 02:43 PM - Forum: Tutorials - Replies (1)
Create a CS 1.6 Server on Linux VPS
 [font=helvetica, arial, sans-serif]===============================================================[/font]
1. Create a user and login.
adduser csserver

passwd csserver
su - csserver


===============================================================

2. Download the script.
wget http://danielgibbs.co.uk/dl/csserver

===============================================================

3. Make it executable.
chmod +x csserver

4. Run the installer and follow the instructions.
./csserver install

===============================================================


5. To start Server 

Start the server.
./csserver start
Stop the server.
./csserver stop
Restart the server.
./csserver restart

===============================================================

Updating Server

 

The server can be updated automatically using SteamCMD. 

./csserver update



To restart the server while updating use update-restart.

./csserver update-restart
================================================================

6. To Run on Boot
 
To run csserver on boot add the command in to the rc.local file.
nano /etc/rc.local              // ( Opening Through Nano )
su - csserver -c '/home/csserver/csserver start'

===============================================================

7. Installing Game Server Query Plugin
 
Download gsquery.py to the same directory as the main script.
wget http://danielgibbs.co.uk/dl/gsquery.py
Make it executable.
chmod +x gsquery.py
To test is works run monitor and it will state that gsquery.py was detected.

 [font=helvetica, arial, sans-serif]===============================================================[/font]

If you want to install plugins then download amxmodx  Smile

===============================================================

Thanks for reading this tutorail :Smile Hope you like it Big Grin
Posted by: Dynamo - 11-13-2015, 08:03 AM - Forum: General - Replies (11)
I thought of creating this Thread as to one of our Sponsor is willing to provide some spec of VPSs to guys who owns tech blogs or websites.

If anyone here owns any tech blogs or websites,then they please comment below with your site link and write a bit about it.
Posted by: corrida - 11-12-2015, 09:17 PM - Forum: General Gaming Discussion - No Replies
Has anyone bought FallOut 4? It is one of the most anticipated games this year. I recently bought it, and would give a 9.5/10, the reason is : Since the recent release of Fallout 4, there has been many updates, which is normal, but some bugs and glitches on it were happening many time to me, so I think that's a little problem they should fix.
Other than that, I really do recommend gamers to buy this (I'm pretty sure most of you bought it.)
What are your thoughts on the game?
Posted by: RickB - 11-10-2015, 08:52 PM - Forum: Meet & Greet! - Replies (5)
Hi,

In this post I would like to introduce myself.
I'm a 15-years old boy named Rick. I live in The Netherlands.

Since about 1,5 - 2 years I'm interested in managing VPS'ses and servers. I'm programming a little longer, as my parents told me I made my first website when I were 8/9 years old. And yes, it was whole plain HTML. I can program xHTML, HTML5, PHP(5), Javascript, ofcourse the JQuery library. I do also like making Android applications. And I can write a little Node.JS.

I speak Dutch (my motherlanguage), English and a bit German.

I hope I will have a great time here at Post4VPS.

Kind Regards,
Rick
Posted by: RickB - 11-10-2015, 08:42 PM - Forum: Tutorials - Replies (7)
Hello fellow members of post4vps.com or non-member if you have found my tutorial by using a search engine (thanks for your interest in reverse proxies by the way),

I am going to explain you how to configure nginx as a reverse proxy for Apache. Of course you could use any webserver or even a Node.JS server instead of Apache. The same idea although I don't explain you how to configure that server. Apart from that nginx functions as a reverse proxy it also caches static files to make your website even faster!

Requirements:
- Linux-based server (Ubuntu, Debian, CentOS, FreeBSD, Fedora, etc. most will fit.)
- Sudo-privileges. As you are going to install a software package into Linux's filesystem you will need to have sudo-privileges (login as root does also qualify).
- Actually there isn't really a minimum amount of RAM you need, since most of the VPS'ses provided by VPS providers are backed with enough memory. But I'm sure you are good to go with about 512MB RAM.

Some things I have to mention:
- We use nginx listening on port 80. SSL listens on 443 by default, I don't tell you how to configure SSL here.
- Our backend webserver (Apache) listens on port 8080.
- I based this tutorial on how I did this on Ubuntu. You might need to change some thing to make it work on the OS of your choice. The config files are pretty much the same.

!!!!IMPORTANT!!!! PLEASE READ THIS BEFORE TRYING OUT MY TUTORIAL!!!!
Unfortunaly I was unable to test this out, it should work, but I am not sure. The code used here is based on the code I use on my production server. Apart from my production server I have no servers so I were unable to test out as I just said. Using this tutorial is fully on your own responsibility / your own risk.  I am not responsible for any damage caused by following my tutorial.

Let's begin!

Step 1: Install Apache, our frontend webserver.
This step is basically one of the most easy one I am going to give. 

Ubuntu/Debian:
Code:
sudo apt-get install nginx

CentOS, Fedora, SuSE linux, Red Hat, Red Hat Enterprise, other RHEL based:
Code:
sudo yum install nginx

FreeBSD:
Code:
sudo pkg install nginx
sudo sysrc nginx_enable=yes
sudo service nginx start

I hope I don't have to explain any of these commands any further. I think you will understand what they will do.

Step 2: Configure nginx.
Create a new nginx site configuration file.
Code:
sudo nano /etc/nginx/sites-available/reverseproxy
Of course you can use any editor you like like, vi, nano, vim, etc.

First, open up your nginx site's configuration file.
We start by making the file look like this:
Code:
server {
    listen      80;
    server_name post4vps.com www.post4vps.com;
}

Of course, you should change post4vps.com to your own domainname Smile

In that file you will make the following changes:

- Add "location /" to catch every request. In this block we are going to determine whether the request is for an static file or an dynamic file. When it's not an static file, we pass the request to the proxy server (Apache).
In the following scenario, static files are files with the following extensions:
Images: jpeg, jpg, png, gif, bmp, ico, svg, tif, tiff
Web assets: css, js
HTML documents: htm, html
The others: ttf, otf, webp, woff, txt, csv, rtf, doc, docx, xls, xlsx, ppt, pptx, odf, odp, ods, odt, pdf
Code:
location / {
    proxy_pass      http://127.0.0.1:8080;
    location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|tif|tiff|css|js|htm|html|ttf|otf|webp|woff|txt|csv|rtf|doc|docx|xls|xlsx|ppt|pptx|odf|odp|ods|odt|pdf$
        root           /usr/share/nginx/html/;
        expires        max;
        try_files      $uri @fallback;
    }
}

- Change root to the correct directory. Since the Apache webserver - which we will be going to use for our backend webserver - uses /var/www/html/ we're going to change the root directory to that location.
Code:
location / {
    proxy_pass      http://127.0.0.1:8080;
    location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|tif|tiff|css|js|htm|html|ttf|otf|webp|woff|txt|csv|rtf|doc|docx|xls|xlsx|ppt|pptx|odf|odp|ods|odt|pdf$
        root           /var/www/html/;
        expires        max;
        try_files      $uri @fallback;
    }
}

- You've might already have seen it, in above blocks, we have a @fallback, let's create that "location".
What this block is, every file nginx couldn't provide you will "fallback" on this block, and so it will be proxied to our Apache webserver, which on it's turn will try to solve your request.
Code:
location @fallback {
    proxy_pass      http://127.0.0.1:8080;
}

- Last but not least, we will add some blocks to deny access to some folders.
Code:
location ~ /\.ht    {return 404;}
location ~ /\.svn/  {return 404;}
location ~ /\.git/  {return 404;}
location ~ /\.hg/   {return 404;}
location ~ /\.bzr/  {return 404;}

After making all these changes, your site's configuration will look like this.

Code:
server {
    listen      80;
    server_name post4vps.com www.post4vps.com;

    location / {
        proxy_pass      http://127.0.0.1:8080;
        location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|tif|tiff|css|js|htm|html|ttf|otf|webp|woff|txt|csv|rtf|doc|docx|xls|xlsx|ppt|pptx|odf|odp|ods|odt|pdf$
            root           /usr/share/nginx/html/;
            expires        max;
            try_files      $uri @fallback;
        }
    }

    location @fallback {
        proxy_pass      http://127.0.0.1:8080;
    }

    location ~ /\.ht    {return 404;}
    location ~ /\.svn/  {return 404;}
    location ~ /\.git/  {return 404;}
    location ~ /\.hg/   {return 404;}
    location ~ /\.bzr/  {return 404;}

}

Save this file and quit the editor. 
Using nano:
Ctrl+O to save, Ctrl+X to quit.

Using vi / vim:
:wq (write, quit) to save the file and then quit the editor.

Step 3: Activate the virtual host file.

We activate the virtual host file using the following command:

Code:
sudo ln -s /etc/nginx/sites-available/reverseproxy /etc/nginx/sites-enabled/reverseproxy

When you've changed the file name in the previous step, also change it here.

Remove the default nginx server block to avoid conflicts.

Code:
sudo rm /etc/nginx/sites-enabled/default

Restart nginx to make the new server block work.

Code:
sudo service nginx restart

Step 4: Install Apache, our backend webserver.
This step is one of the most easy one I am going to give. 

Ubuntu/Debian:
Code:
sudo apt-get install apache2

CentOS, Fedora, SuSE linux, Red Hat, Red Hat Enterprise, other RHEL based:
Code:
sudo yum install httpd

FreeBSD:
Code:
sudo pkg install apache24
sudo sysrc apache24_enable=yes
sudo service apache24 start

As I've also said at the first step of this tutorial, I hope I don't have to explain any of these commands any further. I think you will understand what they will do.

Step 5: Let Apache listen on 8080 instead of the default port 80.
Open up /etc/apache2/ports.conf or /etc/httpd/ports.conf (according to your OS) in your favorite editor.

Change Listen 80 to Listen 8080.

Then we are going to make a copy of the default VirtualHost.

Code:
sudo cp /etc/apache2/sites-available/000-default /etc/apache2/sites-available/reverseproxy
You might need to replace "apache2" with "httpd", according to your OS. Make it fit your needs eitherway, I based this tutorial on Ubuntu.

Enable the virtualhost
Code:
sudo a2ensite reverseproxy

Restart Apache to make your virtual host take effect.

Code:
sudo /etc/init.d/apache2 restart
You might need to replace "apache2" with "httpd", according to your OS. 

In that file change port 80 to 8080.

For example:
Code:
<VirtualHost *:80>
will become
Code:
<VirtualHost *:8080>

Then you might want to install PHP to Apache. There are plenty of tutorials to do that, so don't be lazy and just look it up by yourself.

To test whether your reverse proxy works just well, put the following into /var/www/html/info.php

Code:
<?php phpinfo(); ?>

Then go to http://DOMAIN/info.php or http://IP/info.php

If you get a page that looks like this, you are good to go!

[Image: phpinfo-page.png]

Thanks for reading my tutorial on how to configure nginx as a reverse / caching proxy for Apache.

REGARDING REPRODUCEMENT
Reproducing my tutorial without my permission is not permitted!! I and only I am allowed to reproduce my own tutorial unless I have permitted you to do and you can show me you have permission.
If you want to post this tutorial on your own website, please send me a PM. Most of the time I will give you permission under the condition that you won't claim it as it's your own Smile.
This tutorial is available on the next websites/forums, with permission:
- freedomain.club
- post4vps.com
Posted by: Hugop - 11-10-2015, 02:57 PM - Forum: SEO Optimization - Replies (20)
There are many search engines on the internet that we don't know about. They are not being used by many people but getting traffic in smaller search engines is easier than in bigger search engines.

Here is a list of search engines that I know:
  • Google
  • Bing
  • DuckDuckGo
  • Yandex
  • Baidu
  • Yahoo
  • Sogou
  • Qwant
  • Exalead
  • Search.com
  • Ask.com
  • Info.com
  • HotBot
  • AOL
  • Wow
  • WebCrawler
  • MyWebSearch
  • InfoSpace
  • Blekko
If you know more, reply here and I update this thread.
Posted by: xdude - 11-09-2015, 06:02 AM - Forum: VPS Support - Replies (16)
I haven been trying to install Virtualmin for a week now. But It's been first time I use it and Already having few problems.

01) First I tried to installed with CentOS 6.7. Installation was fine and everything works but I need mysql 5.5 for several projects so when I tried to find a way to upgrade I kinda hit a brick wall. I was told in Support forum that there is noway to  get this done since Virtualmin since it uses what comes with OS. Only way to get it sorted is using a OS which already has Mysql 5.5. I was told to try CentOS 7.
  • So anyone here has found a way to upgrade mysql ?
  • If not which Linux OS/versions comes with mysql 5.5 ?
So then I found Ubuntu 14.10 has Mysql 5.5. Since Ubuntu has a nice Desktop version to I thought it's better learning. Now I have installed Virtualmin in this but again having trouble. Now I have 2 sets of problem when I run Check Configaration.
  • I'm getting Postfix problems about hostname. Looks like it's a common in Postfix version comes with Ubuntu 14.10. anyone got this problem and had it sorted ?
  • Also mailman service seems refuse to start. 

Posted by: Littlemaster - 11-09-2015, 05:23 AM - Forum: VPS Support - Replies (3)
VPS name : VPS 1
Node Location : London
Issue : I am sure I have not used more than 5 GB of 20GB Disk Space allocated for VPS 1.But Solus VM showing
Disk Usage 92%
18.46 GB of 20 GB Used / 1.54 GB Free
I have manually checked the disk space with df -h command.
Filesystem Size Used Avail Use% Mounted on /dev/ploop45294p1 20G 19G 96M 100% / none 256M 4.0K 256M 1% /dev none 256M 0 256M 0% /dev/shm
How to resolve this?
Posted by: Sagnik - 11-06-2015, 02:30 AM - Forum: General - Replies (42)
Recently, about 13 million password of the 000webhost were leaked.
First of all, they were known to be using the old MD5 checksum hash to encrypt passes. And SINCE it is a You hosting company...
Posted by: HostSailor - 11-05-2015, 07:03 PM - Forum: Cheap VPS Providers - Replies (17)
HostSailor has established itself as a trusted provider of high quality VPS Hosting, Dedicated servers, Domains, and SSL Certificates with top notch support and impeccable reputation and also offers some of the most competitive pricing, without sacrificing on the quality of the products and services.HostSailor is based in Dubai, UAE and the services are physically located in Netherlands (Capelle & Amsterdam) and Romania (Bucharest). We own our infrastructure which includes switches/routers/IP addresses/servers, and all servers are HP/DELL/Supermicro, we do not resell any of our services.


Discounts: 10% OFF Using Coupon Code: VPS2015

---------------------------------

OpenVZ:

Mini Sailor OpenVZ:

256 MB RAM
256 MB SWAP
15 GB HDD
1 Cores
1 Gbit Port
256 GB Bandwidth
1 IPV4 address
/64 IPV6
SolusVM Control Panel
Hosted in Netherlands & Romania
* $1.99/Mo

DDOS Protection ADDON Available:
1 Gbps DDoS protection (NL only)
$4.00 USD Monthly + $15.00 USD Setup Fee
1 Gbps attack traffic, PPS FUP

10 Gbps DDoS protection (NL only)
$20.00 USD Monthly + $15.00 USD Setup Fee
10 Gbps attack traffic, PPS FUP


---------------------------------
Sailor OpenVZ:

512 MB RAM
512 MB SWAP
25 GB HDD
1 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
/64 IPV6
SolusVM Control Panel
Hosted in Netherlands & Romania
* $2.99/Mo

DDOS Protection ADDON Available:
1 Gbps DDoS protection (NL only)
$4.00 USD Monthly + $15.00 USD Setup Fee
1 Gbps attack traffic, PPS FUP

10 Gbps DDoS protection (NL only)
$20.00 USD Monthly + $15.00 USD Setup Fee
10 Gbps attack traffic, PPS FUP

=================================

To check all our OpenVZ plans or place an order go to



https://hostsailor.com/vps-hosting/openvz-vps/


=================================

OpenVZ SSD:

Mini Sailor OpenVZ SSD:

256 MB RAM
256 MB SWAP
10 GB SSD
1 Cores
1 Gbit Port
256 GB Bandwidth
1 IPV4 address
/64 IPV6
SolusVM Control Panel
Hosted in Netherlands
* $2.99/Mo

DDOS Protection ADDON Available:
1 Gbps DDoS protection (NL only)
$4.00 USD Monthly + $15.00 USD Setup Fee
1 Gbps attack traffic, PPS FUP

10 Gbps DDoS protection (NL only)
$20.00 USD Monthly + $15.00 USD Setup Fee
10 Gbps attack traffic, PPS FUP


---------------------------------
Sailor OpenVZ SSD:

512 MB RAM
512 MB SWAP
15 GB SSD
1 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
/64 IPV6
SolusVM Control Panel
Hosted in Netherlands
* $4.99/Mo

DDOS Protection ADDON Available:
1 Gbps DDoS protection (NL only)
$4.00 USD Monthly + $15.00 USD Setup Fee
1 Gbps attack traffic, PPS FUP

10 Gbps DDoS protection (NL only)
$20.00 USD Monthly + $15.00 USD Setup Fee
10 Gbps attack traffic, PPS FUP

=================================

To check all our OpenVZ SSD plans or place an order go to



https://hostsailor.com/vps-hosting/openvz-ssd-vps/



=================================


Operating systems: ( Windows 2012 server datacenter R2 )

Windows KVM:

Seaman:

512 Guaranteed RAM
35 GB HDD
2 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6 (Within reason)
SolusVM Control Panel
Hosted in Netherlands
* $6.99/Mo

---------------------------------
Lieutenant RDP KVM

1GB Guaranteed RAM
60 GB HDD
4 Cores
1 Gbit Port
1TB Bandwidth
1 IPV4 address
Unlimited IPv6 (Within reason)
SolusVM Control Panel
Hosted in Netherlands
* $14.99/Mo
---------------------------------
To check all our Windows plans or place an order go to



http://hostsailor.com/vps-hosting/kvm-vps/windows-vps/


=====================================

Payment methods:

PayPal, Credit card, Bank Transfer, CashU, PaySafeCard, Skrill, WebMoney,

Bitcoin, Western Union / Moneygram, and Perfect Money.

=====================================

Features:

1.  4x 1gbit connections to the main servers, 1gbit connections to every VPS
2.  IPV4 and IPV6 enabled VPS
3.  Hardware RAID 10 for optimum disk performance
4.  Weekly backups
5.  Managed services
6.  SolusVM Control Panel
7.  Flexible Upgrading / easy scalability
8.  VPS located in Netherlands
9.  Reverse DNS
10. Instant Setup
11. Free incoming bandwidth
12. No Setup fees
13. No contracts
14. Money back guarantee within 14 days

=====================================

HostSailor:

To know more about us visit Our company
To check our terms of use please click on TOS
We offer an amazing service level agreement at SLA
For our Acceptable use policy check AUP
To get more info about our data center check Our data center

=====================================

FAQ and Support:

Please check our FAQ
To get intouch with us via email please use contact us
To get intouch with us via livechat, please visit our site at HostSailor and we'll be happy to help!
Pages (306): Jump to page 
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,271
» Latest member: orzpainter
» Forum threads: 3,099
» Forum posts: 34,782

Full Statistics

Online Users
There are currently 905 online users.
» 0 Member(s) | 901 Guest(s)
Bing, Yandex, Google, Applebot

Latest Threads
Get LLHOST Netherlands Fe...
Forum: Others
Last Post: LLHOST
09-29-2025, 03:02 AM
» Replies: 0
» Views: 117
Super Fast LLHOST Netherl...
Forum: Value VPS Providers
Last Post: LLHOST
09-16-2025, 05:01 AM
» Replies: 0
» Views: 141
Get LLHOST Netherlands Fe...
Forum: Cheap Providers
Last Post: LLHOST
09-08-2025, 01:33 PM
» Replies: 0
» Views: 207
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers
Last Post: DewlanceHosting
08-16-2025, 03:12 AM
» Replies: 0
» Views: 352
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
08-16-2025, 03:10 AM
» Replies: 8
» Views: 5,264
Budget Dedicated Servers ...
Forum: Others
Last Post: HostNamaste
08-13-2025, 04:54 AM
» Replies: 2
» Views: 1,220
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers
Last Post: bestadvisor
07-13-2025, 09:36 AM
» Replies: 0
» Views: 523
[Promo] 30% Discount – VP...
Forum: Cheap Providers
Last Post: LLHOST
07-11-2025, 12:56 PM
» Replies: 0
» Views: 391
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers
Last Post: RIYAD
07-02-2025, 03:02 AM
» Replies: 0
» Views: 936
15% Lifetime Discount on ...
Forum: Cheap Providers
Last Post: LLHOST
06-25-2025, 05:03 AM
» Replies: 0
» Views: 402

Sponsors: VirMach - Host4Fun - CubeData - Evolution-Host - HostDare - Hyper Expert - Shadow Hosting - Bladenode - Hostlease - RackNerd - ReadyDedis - Limitless Hosting