Hi guys, so today. I'm going to tell you how to create a nameserver for your domain. But, with Freenom.
I got an official tutorial from Freenom (https://my.freenom.com/knowledgebase.php...ticle&id=3), but, to be honest, it's to point your domain to a DNS from another services, not to create your own.
So basically here, I will tell you how to setup the nameserver.
I test this with VestaCP, and it works! Ok, here it is:
I assume you already have your domain (if not, just register a new domain then).
Step 1.
Go to domain list and click manage domain.
![[Image: satu.png]](https://preview.ibb.co/eq7nMT/satu.png)
Step 2.
Go to Management Tools and select Nameservers.
![[Image: dua.png]](https://image.ibb.co/c0T588/dua.png)
Step 3.
Change NS to "Use Default Nameservers (Freenom Nameservers)"
![[Image: tiga.png]](https://preview.ibb.co/hSw3vo/tiga.png)
Step 4.
Go to Manage Freenom DNS
![[Image: empat.png]](https://image.ibb.co/m7XAao/empat.png)
And last step,
Step 5.
Add A record. You can follow my configuration.
![[Image: lima.png]](https://preview.ibb.co/h2EZ1T/lima.png)
Ah, and we done. An advice from me, don't use your main domain. Just register for another domain and use it for the nameserver. It's better tho.
And after we're configuring this, you can change your main domain NS to the new configurated nameserver.
Thanks!
I got an official tutorial from Freenom (https://my.freenom.com/knowledgebase.php...ticle&id=3), but, to be honest, it's to point your domain to a DNS from another services, not to create your own.
So basically here, I will tell you how to setup the nameserver.
I test this with VestaCP, and it works! Ok, here it is:
I assume you already have your domain (if not, just register a new domain then).
Step 1.
Go to domain list and click manage domain.
![[Image: satu.png]](https://preview.ibb.co/eq7nMT/satu.png)
Step 2.
Go to Management Tools and select Nameservers.
![[Image: dua.png]](https://image.ibb.co/c0T588/dua.png)
Step 3.
Change NS to "Use Default Nameservers (Freenom Nameservers)"
![[Image: tiga.png]](https://preview.ibb.co/hSw3vo/tiga.png)
Step 4.
Go to Manage Freenom DNS
![[Image: empat.png]](https://image.ibb.co/m7XAao/empat.png)
And last step,
Step 5.
Add A record. You can follow my configuration.
![[Image: lima.png]](https://preview.ibb.co/h2EZ1T/lima.png)
Ah, and we done. An advice from me, don't use your main domain. Just register for another domain and use it for the nameserver. It's better tho.
And after we're configuring this, you can change your main domain NS to the new configurated nameserver.
Thanks!
So earlier I made a thread to explain about this new panel I found called Pterodactyl, here's a short description I wrote of it.
"Pterodactyl is a free, open-source game management panel which offers you many different games including but not limited to, Minecraft (including Spigot, Bungeecord, and Sponge), ARK: Evolution Evolved, CS:GO, Team Fortress 2, Insurgency, Teamspeak 3, Mumble. You can control all of these services from just one panel and the best part is that It's all totally free! Pterodactyl is based on docker and best choice whether you're a user, a network or a game service provider."
So as I decided to explain it, I thought It'd be even better to write here a short and helpful guide to help you actually install the panel as well!
Before you start using it, here's their license which you agree to when you install the panel.
Code:
So starting the installation, you've to first understand that OpenVZ is not supported!
Do not install this panel if you've an openVZ based system, you must check this first otherwise It will not work.
If you're not sure if you've an openvz system or not, you could contact your host or if you got it from here then check the VPS Information Page
Furthermore Pterodactyl is designed to run on your own server, so you definitely need root for it.Pterodactyl is intended to be run from a root user. You should have root access to your server keeping in mind the end goal to run and utilize this board.When installing the panel, I expect you to have fundamental knowledge of linux as this panel requires you much more than simply copy paste of the commands to install it. If you have not worked with linux before than you most likely should learn that before installing a complex panel such as this.This panel is not a drag and drop panel for your server and It requires complex requirements for it to function properly.
Supported Operating Systems
Dependencies:
Nginx, Apache, or Caddy
cURL curl
Tar tar
Unzip unzip
Redis redis-server
Git git
Below is an example command which will install all the required dependencies,
Code:
Downloading
Now that we are done with getting the dependencies, we need to install the actual panel itself.The first step is to create a folder where you're going to install the panel. you may choose your own but if you are not sure how to, then follow this command,
Code:
After moving into that folder, download the panel using this command,
curl -Lo panel.tar.gz https://github.com/pterodactyl/panel/rel...nel.tar.gz
If you're an advanced user and want to make sure the file you downloaded was not intercepted or corrupted, verify that the SHA256 Checksum is valid for the download. The SHA256 Checksum for [email protected] is
Code:
Next, unzip the package using the the tar utility we installed earlier,
tar --strip-components=1 -xzvf panel.tar.gz
Next, Setup the file permissions so that panel can write logs and cache the required things without a problem,
chmod -R 755 storage/* bootstrap/cache
Installing
We're on the most crucial point of this tutorial now, we're going to install the panel itself now, since we've taken care of getting the dependencies as well as downloading the actual package.
Pterodactyl Panel makes use of Composer to install dependencies and get everything setup and running for you. In order to use composer, you will first need to install it.
Code:
Luckily, Pterodactyl automatically configures the database you've chosen for you, you just need to create an empty database and get the credentials written in a notepad or somewhere accessible because you will need it during the procedure.
Once you've the composer intalled, you just need to run the following command and the composer program will take care of the rest,
Code:
When you run the command above it will begin by installing all of the dependencies required by the panel into the vendor/ directory.
We then need to generate an application encryption key using the command below. You should only run this command once when installing the Panel.
Code:
Notice:
The key you generated with the above command should never be disclosed to others, and you should store a secure copy of that key off-site in a secure manner. If you ever need to reinstall the Panel or migrate to a new server you will need to continue using this key to avoid losing encrypted information in the database.
Before continueing, make sure you've made an empty MySQL database which would be required very soon, and you also use a non root user while the installation proceeds.
The next thing we need to do is get our environment setup for the panel. To do this, run the commands below and follow the prompts.
Code:
After you've configured the environment, we need to configure email handling. To do that, enter the command below and follow the prompts. If you would like to use PHP's mail() function simply select the mail option. You also have the option to use SMTP or an email delivery service.
Code:
We can now setup the database. This is an automatic process that only requires you enter the command below.
Code:
The command may confirm from you if you want to do this on a live environment, answer It yes for it to continue It's work.
Once the database is setup, we need to further add information to the database itself so run the following command,
Code:
Finally, we need to create an admin account on the system. Run the command below and follow the prompts to do so.
Code:
Notice:
Passwords for the user must include mixed case, at least one number, and at least 8 characters. The script will fail otherwise.
The next step is to set the permissions of the files and folder to the user who is the incharge of the panel, you could use root here however It is not recommended, use a non root user and set the permissions like so,
For Nginx:
Code:
For Apache
Code:
Before configuring the web server, we need to setup some listeners which will allow the panel to do progress in the background and handle It's tasks more efficiently.Simply run sudo crontab -e and then enter the code below at the bottom.
Code:
Also make sure that cron is running by running sudo service cron start.
We then need to add a queue worker systemd script. To do so, create a file in /etc/systemd/system named pteroq.service, and paste the contents of the block below in it.
Ubuntu 14.04 Notice
If you are using Ubuntu 14.04 you cannot use this method to run your queue worker. Please see these instructions for installing Supervisor and setting up your queue. Ensure you use the same ExecStart line as below.
Code:
Furthermore, you need to setup the cron service to autostart on boot, follow the commands below,
Code:
Webserver Configuration!
If you were able to follow me up to this point, then be notified that we're on the last part of the installation process, we simply need to make the panel pubilically accessible
If you are using NGINX, follow this below you need to create a new file called "pterodactyl.conf" and then replace <domain> with the IP or Fully Qualified Domain Name (e.x. panel.example.com) in the configuration file below.
This tutorial assumes that you will be using SSL on both the panel and daemons for significantly improved communication security between users and the panel. You will need to get a valid SSL certificate which can be done for free by using Let's Encrypt.
Pterodactyl.conf
Code:
Pterodactyl.conf(non http)
Code:
Depending on your PHP conformation you may need to change the fastcgi_pass variable star to point to a TCP port or a different Unix socket. This is especially the case for CentOS. The final step is to restart NGINX with the program line below.
Ubuntu
Code:
CentOS:
Code:
If you face any type of errors, you can check more about it using nginx -t which will point out the main cause or root of the interruption.
If you are not using your webserver for for anything else, we highly recommend you remove the default nginx configuration, as it might expose your Pterodactyl installation location and reveals your .env file containing sensible information.
On Ubuntu 16.04 you can run rm -rf /etc/nginx/sites-enabled/default to disable the default configuration.
Webserver Configuration For Apache!
If you're using apache instead of nginx( I personally use apache too ^^) then you've to create a file called pterodactyl.conf with the contents below. Replace the <domain> placeholder with the IP of ur server or the fully qualified domain such as myserver.domain.com in the premade config below,
Code:
Run the commands below to finish setting up Apache and start the webserver.
Ubuntu:
Code:
CentOS
Code:
I'll once again warn you,
If you are not using your webserver for for anything else, we highly recommend you remove the default apache configuration, as it might expose your Pterodactyl installation location and reveals your .env file containing sensible information.
On Ubuntu 16.04 you can run rm -rf /etc/apache2/sites-enabled/default to disable the default configuration.
If you followed me till here, then congratulations you've done the first part of the panel! The panel will function now but for it to be
able to run servers we need to set up panel daemons which won't take this long.
Installing the Daemon
Now I'll try to summarize this portion as my hands are actually tired of writing so much, and I'm sure you are tired of following it as well!
The daemon utilizes Docker so you must make sure your system is compatible with Docker before you start installing. Like suggested intially, openvz is not supported so make sure you're using KVM.(Xen will not work as well.)
The Docker supports OS ranging from Ubuntu 14.04, 16.04, CentOS 7, Debian 8 and 9
If you're using Debian 8 however, It requires a kernel upgrade before you can install the panel.
Please be aware that OVH installs a modified kernel that does not support important docker features. If you use OVH check your kernel version by running uname -r. If your kernel ends in -xxxx-grs-ipv6-64 or -xxxx-mod-std-ipv6-64 you're probably using a non-supported kernel.
The two main dependencies of this daemon is Docker(as mentioned previously) and NodeJS
Please reference the official Docker documentation for how to install Docker CE on your server. Some quick links are listed below for commonly supported systems. To run docker on boot, simply run this command
Code:
Code:
Now the second part of dependencies, you need to install NodeJS
NodeJS is extremely easy to install as well, follow the commands provided below.
Ubuntu:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
apt -y install nodejs
CentOS:
curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
yum -y install nodejs
Additional Dependencies,
Ubuntu:
apt -y install tar unzip make gcc g++ python
CentOS 7:
yum -y install tar unzip make gcc gcc-c++ python
The last section of second part is to install the actual Daemon.
The first step for installing the daemon is to make sure we have the required directory structure setup. To do so, run the commands below.
mkdir -p /srv/daemon /srv/daemon-data
cd /srv/daemon
Next, you've to install the daemon files.
Follow the command below,
curl -Lo daemon.tar.gz https://github.com/pterodactyl/daemon/re...mon.tar.gz
Extract the downloaded archive, tar --strip-components=1 -xzvf daemon.tar.gz
and then install the daemon by, npm install --only=production
This command could take a few minutes to run depending on your system specifications.
Once you have installed the daemon and required components, the next step is to create a node on your installed Panel. Once you have done that there will be a tab called Configuration when you view the node.
Simply copy and paste the code block and paste it into a file called core.json in /srv/daemon/config/ and save it. You may also use the Auto-Deployment feature rather than manually creating the files.
You can install this in your daemon using nano or any other text editor of you choice:
sudo nano /srv/daemon/config/core.json
Now paste the copied config (right click when using Putty or CTRL + SHIFT + v when using a Linux console).
After this saving the config using CTRL + o. You can leave the editor using CTRL + x in the end.
To start your daemon simply move into the daemon directory (usually /srv/daemon) and run the command below which will start the daemon in foreground mode.
sudo npm start
Use CTRL + C to stop the running process.
And voila, your setup is completed, if you actually followed me till here I'll be quite amazed.
and let's not forget, some of the content above including the scripts, notices have been copied directly from their documentation as I felt they were quite explanatory itself, this took me around two hours to write, so I had to copy some of the text from their documentation, though most of it is written myself.I hope you enjoy the tutorial, I tried to make it as easy and short as I could but It still took such a long time to write.
If you've any issues, or questions you can post about them below!
"Pterodactyl is a free, open-source game management panel which offers you many different games including but not limited to, Minecraft (including Spigot, Bungeecord, and Sponge), ARK: Evolution Evolved, CS:GO, Team Fortress 2, Insurgency, Teamspeak 3, Mumble. You can control all of these services from just one panel and the best part is that It's all totally free! Pterodactyl is based on docker and best choice whether you're a user, a network or a game service provider."
So as I decided to explain it, I thought It'd be even better to write here a short and helpful guide to help you actually install the panel as well!
Before you start using it, here's their license which you agree to when you install the panel.
Code:
Code:
Copyright (c) 2015 - 2018 Dane Everitt <[email protected]>.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.So starting the installation, you've to first understand that OpenVZ is not supported!
Do not install this panel if you've an openVZ based system, you must check this first otherwise It will not work.
If you're not sure if you've an openvz system or not, you could contact your host or if you got it from here then check the VPS Information Page
Furthermore Pterodactyl is designed to run on your own server, so you definitely need root for it.Pterodactyl is intended to be run from a root user. You should have root access to your server keeping in mind the end goal to run and utilize this board.When installing the panel, I expect you to have fundamental knowledge of linux as this panel requires you much more than simply copy paste of the commands to install it. If you have not worked with linux before than you most likely should learn that before installing a complex panel such as this.This panel is not a drag and drop panel for your server and It requires complex requirements for it to function properly.
Supported Operating Systems
- Ubuntu Server 14.04(Trusty Tahr)
- Ubuntu Server 16.04(Xenial Xerus)
- CentOS 7
- Debian 8
- Debian 9
Dependencies:
- PHP 7.2 with the following Extensions
[i]- - CLI- php7.2-cli[/i]
[i] - OpenSSL (included with packaged versions)[/i]
[i]- GD php7.2-gd[/i]
[i]- MySQL php7.2-mysql[/i]
[i]- PDO php7.2-pdo[/i]
[i]- MBString php7.2-mbstring[/i]
[i]- Tokenizer php7.2-tokenizer[/i]
[i]- BCMath php7.2-bcmath[/i]
[i]- DOM php7.2-xml or php7.2-dom[/i]
[i]- cURL php7.2-curl[/i]
[i]- Zip php7.2-zip[/i]
MySQL >= 5.7 or MariaDB >= 10.1Nginx, Apache, or Caddy
cURL curl
Tar tar
Unzip unzip
Redis redis-server
Git git
Below is an example command which will install all the required dependencies,
Code:
Code:
# Add "add-apt-repository" command
apt -y install software-properties-common
# Add additional repositories for PHP, Redis, and MariaDB
add-apt-repository -y ppa:ondrej/php
add-apt-repository -y ppa:chris-lea/redis-server
curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash
# Update repositories list
apt update
# Install Dependencies
apt -y install php7.2 php7.2-cli php7.2-gd php7.2-mysql php7.2-pdo php7.2-mbstring php7.2-tokenizer php7.2-bcmath php7.2-xml php7.2-fpm php7.2-curl php7.2-zip mariadb-server nginx curl tar unzip git redis-serverNow that we are done with getting the dependencies, we need to install the actual panel itself.The first step is to create a folder where you're going to install the panel. you may choose your own but if you are not sure how to, then follow this command,
Code:
Code:
mkdir -p /var/www/html/pterodactyl
cd /var/www/html/pterodactylAfter moving into that folder, download the panel using this command,
curl -Lo panel.tar.gz https://github.com/pterodactyl/panel/rel...nel.tar.gz
If you're an advanced user and want to make sure the file you downloaded was not intercepted or corrupted, verify that the SHA256 Checksum is valid for the download. The SHA256 Checksum for [email protected] is
Code:
Code:
a904dc978e00bbec026d3c53d7bedefbc77ad722ddcdbfbb9cf4a51dc28e685aNext, unzip the package using the the tar utility we installed earlier,
tar --strip-components=1 -xzvf panel.tar.gz
Next, Setup the file permissions so that panel can write logs and cache the required things without a problem,
chmod -R 755 storage/* bootstrap/cache
Installing
We're on the most crucial point of this tutorial now, we're going to install the panel itself now, since we've taken care of getting the dependencies as well as downloading the actual package.
Pterodactyl Panel makes use of Composer to install dependencies and get everything setup and running for you. In order to use composer, you will first need to install it.
Code:
Code:
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composerLuckily, Pterodactyl automatically configures the database you've chosen for you, you just need to create an empty database and get the credentials written in a notepad or somewhere accessible because you will need it during the procedure.
Once you've the composer intalled, you just need to run the following command and the composer program will take care of the rest,
Code:
Code:
cp .env.example .env
composer install --no-devWhen you run the command above it will begin by installing all of the dependencies required by the panel into the vendor/ directory.
We then need to generate an application encryption key using the command below. You should only run this command once when installing the Panel.
Code:
Code:
php artisan key:generate --forceNotice:
The key you generated with the above command should never be disclosed to others, and you should store a secure copy of that key off-site in a secure manner. If you ever need to reinstall the Panel or migrate to a new server you will need to continue using this key to avoid losing encrypted information in the database.
Before continueing, make sure you've made an empty MySQL database which would be required very soon, and you also use a non root user while the installation proceeds.
The next thing we need to do is get our environment setup for the panel. To do this, run the commands below and follow the prompts.
Code:
Code:
php artisan p:environment:setup
php artisan p:environment:databaseAfter you've configured the environment, we need to configure email handling. To do that, enter the command below and follow the prompts. If you would like to use PHP's mail() function simply select the mail option. You also have the option to use SMTP or an email delivery service.
Code:
Code:
php artisan p:environment:mailWe can now setup the database. This is an automatic process that only requires you enter the command below.
Code:
Code:
php artisan migrateThe command may confirm from you if you want to do this on a live environment, answer It yes for it to continue It's work.
Once the database is setup, we need to further add information to the database itself so run the following command,
Code:
Code:
php artisan db:seedFinally, we need to create an admin account on the system. Run the command below and follow the prompts to do so.
Code:
Code:
php artisan p:user:makeNotice:
Passwords for the user must include mixed case, at least one number, and at least 8 characters. The script will fail otherwise.
The next step is to set the permissions of the files and folder to the user who is the incharge of the panel, you could use root here however It is not recommended, use a non root user and set the permissions like so,
For Nginx:
Code:
Code:
chown -R www-data:www-data *
# If using CentOS do:
chown -R nginx:nginx *For Apache
Code:
Code:
chown -R www-data:www-data *
# If using CentOS do:
chown -R apache:apache *Before configuring the web server, we need to setup some listeners which will allow the panel to do progress in the background and handle It's tasks more efficiently.Simply run sudo crontab -e and then enter the code below at the bottom.
Code:
Code:
* * * * * php /var/www/html/pterodactyl/artisan schedule:run >> /dev/null 2>&1Also make sure that cron is running by running sudo service cron start.
We then need to add a queue worker systemd script. To do so, create a file in /etc/systemd/system named pteroq.service, and paste the contents of the block below in it.
Ubuntu 14.04 Notice
If you are using Ubuntu 14.04 you cannot use this method to run your queue worker. Please see these instructions for installing Supervisor and setting up your queue. Ensure you use the same ExecStart line as below.
Code:
Code:
# Pterodactyl Queue Worker File
# ----------------------------------
# File should be placed in:
# /etc/systemd/system
#
# nano /etc/systemd/system/pteroq.service
[Unit]
Description=Pterodactyl Queue Worker
After=redis-server.service
[Service]
# On some systems the user and group might be different.
# Some systems use `apache` as the user and group.
User=www-data
Group=www-data
Restart=always
ExecStart=/usr/bin/php /var/www/html/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
[Install]
WantedBy=multi-user.targetFurthermore, you need to setup the cron service to autostart on boot, follow the commands below,
Code:
Code:
sudo systemctl enable pteroq.service
sudo systemctl start pteroqWebserver Configuration!
If you were able to follow me up to this point, then be notified that we're on the last part of the installation process, we simply need to make the panel pubilically accessible
If you are using NGINX, follow this below you need to create a new file called "pterodactyl.conf" and then replace <domain> with the IP or Fully Qualified Domain Name (e.x. panel.example.com) in the configuration file below.
This tutorial assumes that you will be using SSL on both the panel and daemons for significantly improved communication security between users and the panel. You will need to get a valid SSL certificate which can be done for free by using Let's Encrypt.
Pterodactyl.conf
Code:
Code:
# If using Ubuntu this file should be placed in:
# /etc/nginx/sites-available/
#
# If using CentOS this file should be placed in:
# /etc/nginx/conf.d/
#
server {
listen 80;
server_name <domain>;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
server_name <domain>;
root /var/www/html/pterodactyl/public;
index index.php;
access_log /var/log/nginx/pterodactyl.app-access.log;
error_log /var/log/nginx/pterodactyl.app-error.log error;
# allow larger file uploads and longer script runtimes
client_max_body_size 100m;
client_body_timeout 120s;
sendfile off;
# SSL Configuration
ssl_certificate /etc/letsencrypt/live/<domain>/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/<domain>/privkey.pem;
ssl_session_cache shared:SSL:10m;
ssl_protocols TLSv1.2;
ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
ssl_prefer_server_ciphers on;
add_header Strict-Transport-Security "max-age=15768000; preload;";
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header Content-Security-Policy "frame-ancestors 'self'";
add_header X-Frame-Options DENY;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# the fastcgi_pass path needs to be changed accordingly when using CentOS
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_PROXY "";
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
include /etc/nginx/fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}Pterodactyl.conf(non http)
Code:
Code:
# If using Ubuntu this file should be placed in:
# /etc/nginx/sites-available/
#
# If using CentOS this file should be placed in:
# /etc/nginx/conf.d/
#
server {
listen 80;
server_name <domain>;
root /var/www/html/pterodactyl/public;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/pterodactyl.app-error.log error;
# allow larger file uploads and longer script runtimes
client_max_body_size 100m;
client_body_timeout 120s;
sendfile off;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# the fastcgi_pass path needs to be changed accordingly when using CentOS
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_PROXY "";
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
}
location ~ /\.ht {
deny all;
}
}Depending on your PHP conformation you may need to change the fastcgi_pass variable star to point to a TCP port or a different Unix socket. This is especially the case for CentOS. The final step is to restart NGINX with the program line below.
Ubuntu
Code:
Code:
sudo ln -s /etc/nginx/sites-available/pterodactyl.conf /etc/nginx/sites-enabled/pterodactyl.conf
service nginx restartCentOS:
Code:
Code:
systemctl restart php-fpm
systemctl restart nginxIf you face any type of errors, you can check more about it using nginx -t which will point out the main cause or root of the interruption.
If you are not using your webserver for for anything else, we highly recommend you remove the default nginx configuration, as it might expose your Pterodactyl installation location and reveals your .env file containing sensible information.
On Ubuntu 16.04 you can run rm -rf /etc/nginx/sites-enabled/default to disable the default configuration.
Webserver Configuration For Apache!
If you're using apache instead of nginx( I personally use apache too ^^) then you've to create a file called pterodactyl.conf with the contents below. Replace the <domain> placeholder with the IP of ur server or the fully qualified domain such as myserver.domain.com in the premade config below,
Code:
Code:
# If using Ubuntu, this file should be placed in:
# /etc/apache2/sites-available
#
# If using CentOS this file should be placed in:
# /etc/httpd/conf.d/
#
<VirtualHost *:80>
ServerName <domain>
DocumentRoot "/var/www/html/pterodactyl/public"
AllowEncodedSlashes On
php_value upload_max_filesize 100M
php_value post_max_size 100M
<Directory "/var/www/html/pterodactyl/public">
AllowOverride all
</Directory>
</VirtualHost>Run the commands below to finish setting up Apache and start the webserver.
Ubuntu:
Code:
Code:
sudo ln -s /etc/apache2/sites-available/pterodactyl.conf /etc/apache2/sites-enabled/pterodactyl.conf
sudo a2enmod rewrite
systemctl restart apache2CentOS
Code:
Code:
systemctl restart httpdI'll once again warn you,
If you are not using your webserver for for anything else, we highly recommend you remove the default apache configuration, as it might expose your Pterodactyl installation location and reveals your .env file containing sensible information.
On Ubuntu 16.04 you can run rm -rf /etc/apache2/sites-enabled/default to disable the default configuration.
If you followed me till here, then congratulations you've done the first part of the panel! The panel will function now but for it to be
able to run servers we need to set up panel daemons which won't take this long.
Installing the Daemon
Now I'll try to summarize this portion as my hands are actually tired of writing so much, and I'm sure you are tired of following it as well!
The daemon utilizes Docker so you must make sure your system is compatible with Docker before you start installing. Like suggested intially, openvz is not supported so make sure you're using KVM.(Xen will not work as well.)
The Docker supports OS ranging from Ubuntu 14.04, 16.04, CentOS 7, Debian 8 and 9
If you're using Debian 8 however, It requires a kernel upgrade before you can install the panel.
Please be aware that OVH installs a modified kernel that does not support important docker features. If you use OVH check your kernel version by running uname -r. If your kernel ends in -xxxx-grs-ipv6-64 or -xxxx-mod-std-ipv6-64 you're probably using a non-supported kernel.
The two main dependencies of this daemon is Docker(as mentioned previously) and NodeJS
Please reference the official Docker documentation for how to install Docker CE on your server. Some quick links are listed below for commonly supported systems. To run docker on boot, simply run this command
Code:
Code:
For Ubuntu 16.04 & CentOS 7 : systemctl enable dockerCode:
Code:
If you're using ubuntu 14 then you can proceed.Now the second part of dependencies, you need to install NodeJS
NodeJS is extremely easy to install as well, follow the commands provided below.
Ubuntu:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
apt -y install nodejs
CentOS:
curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
yum -y install nodejs
Additional Dependencies,
Ubuntu:
apt -y install tar unzip make gcc g++ python
CentOS 7:
yum -y install tar unzip make gcc gcc-c++ python
The last section of second part is to install the actual Daemon.
The first step for installing the daemon is to make sure we have the required directory structure setup. To do so, run the commands below.
mkdir -p /srv/daemon /srv/daemon-data
cd /srv/daemon
Next, you've to install the daemon files.
Follow the command below,
curl -Lo daemon.tar.gz https://github.com/pterodactyl/daemon/re...mon.tar.gz
Extract the downloaded archive, tar --strip-components=1 -xzvf daemon.tar.gz
and then install the daemon by, npm install --only=production
This command could take a few minutes to run depending on your system specifications.
Once you have installed the daemon and required components, the next step is to create a node on your installed Panel. Once you have done that there will be a tab called Configuration when you view the node.
Simply copy and paste the code block and paste it into a file called core.json in /srv/daemon/config/ and save it. You may also use the Auto-Deployment feature rather than manually creating the files.
You can install this in your daemon using nano or any other text editor of you choice:
sudo nano /srv/daemon/config/core.json
Now paste the copied config (right click when using Putty or CTRL + SHIFT + v when using a Linux console).
After this saving the config using CTRL + o. You can leave the editor using CTRL + x in the end.
To start your daemon simply move into the daemon directory (usually /srv/daemon) and run the command below which will start the daemon in foreground mode.
sudo npm start
Use CTRL + C to stop the running process.
And voila, your setup is completed, if you actually followed me till here I'll be quite amazed.
and let's not forget, some of the content above including the scripts, notices have been copied directly from their documentation as I felt they were quite explanatory itself, this took me around two hours to write, so I had to copy some of the text from their documentation, though most of it is written myself.I hope you enjoy the tutorial, I tried to make it as easy and short as I could but It still took such a long time to write.
If you've any issues, or questions you can post about them below!
Enjoy premium Dedicated server hosting service at economical rates!
Our servers are powered by Intel processors, each equipped with high-performance memory giving you the best hosting experience. Our Hardware and telecommunication resources are completely redundant to the needs of our customers. We do not over-pack our servers, so you can be sure that your website will be fast performing and highly responsive.
Contact us- Contact mail at [email protected], call to +91-9772222179 and check out website https://www.serverwala.org.
Location: (USA, India, China, Singapore, Germany, and France)
Included with every server;
Premium IRP Network Blend of Multiple Transit Providers (Level 3, GTT, Telia Italia, Hurricane Electric, XO, Cogent, Century Link, NTT) and Peering Fabrics (NOTA, NYIIX, DE-CIX, TIE, Any2, TPA-IX)
DDoS Protected Network
Free server to server traffic between our Los Angeles, Tampa, New York City and Atlanta data centers
Access to our world-class 24/7/365 Impressive Support Team (phone, live chat, ticket) hablamos espanol
15 Minute Avg Ticket Response
Proactive Managed Services from just $35/month (Linux and Linux + cPanel)
Free 10 GB cloud storage
Enterprise Grade Server Hardware from Dell or Supermicro
Data Center Edition SSDs from Intel, Kingston or Micron
Free Inbound Transit
myVelocity portal (DNS manager, IPMI manager, live order tracker, 2 factor authentication, session manager, IP allocator, service monitoring, more....)
Free OS Reloads
Private Network interface so backups, cloud storage etc... do not affect public bandwidth performance
Free Migration (certain restrictions apply)
IPv6 support
Data Packet Scrubbing via Corero Threat Defense System available
BUDGET DEDICATED SERVERS
Intel® Xeon® E3-1230V3 | 8X3.3 GHZ Core | 8 GB RAM | 1 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $69/Month Order Now
Intel® Xeon® E3-1230V3 | 8X3.3 GHZ Core | 16 GB RAM | 1 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $99/Month Order Now
Intel® Xeon® E3-1230V3 | 8X3.3 GHZ Core | 32 GB RAM | 2 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $110/Month Order Now
Intel® Xeon® E3-1230V3 | 8X3.7 GHZ Core | 64 GB RAM | 2 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $130/Month Order Now
HIGH PERFORMANCE DEDICATED SERVERS
Dual Intel® Xeon® 5650 | 2x 12x 3.3 GHz Core | 72 GB RAM | 120GB SSD + 3TB SATA HDD | 50 TB Bandwidth | $169/Month Order Now
Dual Xeon® E5-2670 V2 | 2x 20x 2.40 GHz Core | 96 GB RAM | 960GB SSD HDD | 50 TB Bandwidth | $189/Month Order Now
Dual Intel® Xeon® E5-2670 V4 | 2x 20x 2.10 GHz Core |128 GB RAM | 2TB SSD HDD | 50 TB Bandwidth | $269/Month Order Now
Dual Intel® Xeon® E5-2670 V4 | 2x 20x 2.10 GHz Core | 128 GB RAM | 2x 2TB SSD HDD | 50 TB Bandwidth | $359/Month Order Now
Quad Intel® Xeon® E7-4860 | 2x 20x2.10 GHz Crore | 256 GB RAM | 16x 2TB SAS HDD | 50 TB Bandwidth | $669/Month Order Now
Payment Method- PayPal, Bank Transfer, Net Banking, Credit & Debit Card, PayuMoney
About ServerWala
ServerWala often has launched various types of plans and service that enhanced your business toward to growth. To Always keep ideas to the new height of business, every plan which are launched by us that fulfill the client requirement according to their budget. We believe in customer satisfaction that’s a reason, we always perform beyond the expectation of customers.
Thanks
Our servers are powered by Intel processors, each equipped with high-performance memory giving you the best hosting experience. Our Hardware and telecommunication resources are completely redundant to the needs of our customers. We do not over-pack our servers, so you can be sure that your website will be fast performing and highly responsive.
Contact us- Contact mail at [email protected], call to +91-9772222179 and check out website https://www.serverwala.org.
Location: (USA, India, China, Singapore, Germany, and France)
Included with every server;
Premium IRP Network Blend of Multiple Transit Providers (Level 3, GTT, Telia Italia, Hurricane Electric, XO, Cogent, Century Link, NTT) and Peering Fabrics (NOTA, NYIIX, DE-CIX, TIE, Any2, TPA-IX)
DDoS Protected Network
Free server to server traffic between our Los Angeles, Tampa, New York City and Atlanta data centers
Access to our world-class 24/7/365 Impressive Support Team (phone, live chat, ticket) hablamos espanol
15 Minute Avg Ticket Response
Proactive Managed Services from just $35/month (Linux and Linux + cPanel)
Free 10 GB cloud storage
Enterprise Grade Server Hardware from Dell or Supermicro
Data Center Edition SSDs from Intel, Kingston or Micron
Free Inbound Transit
myVelocity portal (DNS manager, IPMI manager, live order tracker, 2 factor authentication, session manager, IP allocator, service monitoring, more....)
Free OS Reloads
Private Network interface so backups, cloud storage etc... do not affect public bandwidth performance
Free Migration (certain restrictions apply)
IPv6 support
Data Packet Scrubbing via Corero Threat Defense System available
<<<<<<<<< Dedicated Server Plans And Features >>>>>>>>>
BUDGET DEDICATED SERVERS
Intel® Xeon® E3-1230V3 | 8X3.3 GHZ Core | 8 GB RAM | 1 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $69/Month Order Now
Intel® Xeon® E3-1230V3 | 8X3.3 GHZ Core | 16 GB RAM | 1 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $99/Month Order Now
Intel® Xeon® E3-1230V3 | 8X3.3 GHZ Core | 32 GB RAM | 2 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $110/Month Order Now
Intel® Xeon® E3-1230V3 | 8X3.7 GHZ Core | 64 GB RAM | 2 TB Enterprise SATA / 128 GB SSD | 15 TB Bandwidth | $130/Month Order Now
HIGH PERFORMANCE DEDICATED SERVERS
Dual Intel® Xeon® 5650 | 2x 12x 3.3 GHz Core | 72 GB RAM | 120GB SSD + 3TB SATA HDD | 50 TB Bandwidth | $169/Month Order Now
Dual Xeon® E5-2670 V2 | 2x 20x 2.40 GHz Core | 96 GB RAM | 960GB SSD HDD | 50 TB Bandwidth | $189/Month Order Now
Dual Intel® Xeon® E5-2670 V4 | 2x 20x 2.10 GHz Core |128 GB RAM | 2TB SSD HDD | 50 TB Bandwidth | $269/Month Order Now
Dual Intel® Xeon® E5-2670 V4 | 2x 20x 2.10 GHz Core | 128 GB RAM | 2x 2TB SSD HDD | 50 TB Bandwidth | $359/Month Order Now
Quad Intel® Xeon® E7-4860 | 2x 20x2.10 GHz Crore | 256 GB RAM | 16x 2TB SAS HDD | 50 TB Bandwidth | $669/Month Order Now
Payment Method- PayPal, Bank Transfer, Net Banking, Credit & Debit Card, PayuMoney
About ServerWala
ServerWala often has launched various types of plans and service that enhanced your business toward to growth. To Always keep ideas to the new height of business, every plan which are launched by us that fulfill the client requirement according to their budget. We believe in customer satisfaction that’s a reason, we always perform beyond the expectation of customers.
Thanks
Hi @everyone!
Would like to share on how to create a GMAIL account without mobile number.
This is a LEGAL way but a tricker one not a HACK or something else.
We all know that creating a GMAIL account needs a mobile number to send the CODE but GMAIL doesnt allowed to use a mobile number repeatedly.
So in this trick we can create a GMAIL account without mobile number.
Note: this trick is only applicable in Android device.
Step 1: Unsync or removed your current GMAIL account in your device
Step 2: Open Google Playstore
Step 3: Before you can download in Playstore, ofcourse you need a google account. Choose create an account
Step 4: Fill up the details
Step 5: Until you reach the MOBILE NUMBER question, you can simply click SKIP
Step 6: VIOLA! You created a GMAIL account without mobile number.
Would like to share on how to create a GMAIL account without mobile number.
This is a LEGAL way but a tricker one not a HACK or something else.
We all know that creating a GMAIL account needs a mobile number to send the CODE but GMAIL doesnt allowed to use a mobile number repeatedly.
So in this trick we can create a GMAIL account without mobile number.
Note: this trick is only applicable in Android device.
Step 1: Unsync or removed your current GMAIL account in your device
Step 2: Open Google Playstore
Step 3: Before you can download in Playstore, ofcourse you need a google account. Choose create an account
Step 4: Fill up the details
Step 5: Until you reach the MOBILE NUMBER question, you can simply click SKIP
Step 6: VIOLA! You created a GMAIL account without mobile number.
We've been in business for the past three years and we've been growing more and more ever since.
Our aim since the begining was to provide the highest quality available at accesible prices for everybody, and by doing so, we do our part to make the internet a better place!
Please visit our website at https://www.vps-rdp.com to find out more about us, and order your vps.
Our Terms of Service are available at https://www.vps-rdp.com/Terms%20of%20Service.html for anybody to read.
Any member with marketplace access can check our trading history and vouches in our thread (over +150 people vouch for us).
Contact us at https://www.vps-rdp.com/clients/contact.php
Below you'll find our banner.
http://prntscr.com/jhdrn5
Regards.
Our aim since the begining was to provide the highest quality available at accesible prices for everybody, and by doing so, we do our part to make the internet a better place!
Please visit our website at https://www.vps-rdp.com to find out more about us, and order your vps.
Our Terms of Service are available at https://www.vps-rdp.com/Terms%20of%20Service.html for anybody to read.
Any member with marketplace access can check our trading history and vouches in our thread (over +150 people vouch for us).
Contact us at https://www.vps-rdp.com/clients/contact.php
Below you'll find our banner.
http://prntscr.com/jhdrn5
Regards.
Dear Members,
I'm HarisHayat,
Today, I will teach you how to install a Teamspeak3 Server easily.
Note: This method will not be cracked or more than 32 slots.
Max slots will be 32!
Steps:-
Use these steps for only [UBUNTU & DEBIAN]
1. Updating your VPS.
2. Installing TeamSpeak3 Server.
3. Starting TeamSpeak3 Server.
4. After starting the Server, You will get your Server Admin User and password.
------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
Server Query Admin Account created
loginname= "serveradmin", password= "BVV2YUIJ"
------------------------------------------------------------------
------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
ServerAdmin privilege key created, please use it to gain
serveradmin rights for your virtualserver. please
also check the doc/privilegekey_guide.txt for details.
token=zvCYfUTRlcYl12dviAMuGKR7e+nQYKSE0bD9O4CI
------------------------------------------------------------------
5. All done!
Note : don't use crack, if you stay safe!
Just try to get Free Non-profit license from their Site.
For Connecting any ts3 server
<ip>:<port> ( Default port will be 9987 )
Thanks.
Best Regards,
Founder of VekoLTC
I'm HarisHayat,
Today, I will teach you how to install a Teamspeak3 Server easily.
Note: This method will not be cracked or more than 32 slots.
Max slots will be 32!
Steps:-
Use these steps for only [UBUNTU & DEBIAN]
1. Updating your VPS.
Code:
root@vps:~$ sudo apt-get update
root@vps:~$ sudo apt-get install wget bzip2Code:
root@vps:~$ wget http://dl.4players.de/ts/releases/3.0.13.8/teamspeak3-server_linux_amd64-3.0.13.8.tar.bz2Code:
root@vps:~$ tar xfvj teamspeak3-server_linux_amd64-3.0.13.8.tar.bz3. Starting TeamSpeak3 Server.
Code:
root@vps:~$ cd teamspeak3-server_linux_amd64
root@vps:~/teamspeak3-server_linux_amd64$ ./ts3server_startscript.sh start------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
Server Query Admin Account created
loginname= "serveradmin", password= "BVV2YUIJ"
------------------------------------------------------------------
------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
ServerAdmin privilege key created, please use it to gain
serveradmin rights for your virtualserver. please
also check the doc/privilegekey_guide.txt for details.
token=zvCYfUTRlcYl12dviAMuGKR7e+nQYKSE0bD9O4CI
------------------------------------------------------------------
5. All done!
Note : don't use crack, if you stay safe!
Just try to get Free Non-profit license from their Site.
For Connecting any ts3 server
<ip>:<port> ( Default port will be 9987 )
Thanks.
Best Regards,
Founder of VekoLTC
Dear Members,
I'm HarisHayat.
Some people are very confused and worried about Installing cs1.6 Server on OGP.
Which is very hard for them so Today I want to share some steps from which you can create easily.
1. Open your panel with Admin Account and Create a gameserver
2. Select type to Counter-Strike (Linux) and Configure it.
3. When the GameServer added. Click on Administration tab.
4. Click on Addons Manager and Add Addon.
5. Fill boxes with following steps:
Name of addon: Counter-Strike 1.6 HLDS
Link of addon: http://cdn.blackfirehost.com/resources/bfhlds.zip ( 2017 New HLDS )
http://cdn.blackfirehost.com/resources/csserver.zip ( 2013 Old One )
Path: ( leave it blank )
Type of addon: Config
Addon of Game: Counter-Strike (Linux)
6. Save this addon and Go to your Gameserver, There Click on " Addons (1) "
7. Select the HLDS " Counter-Strike 1.6 HLDS " and Click on Install.
8. Wait for downloading and compressing.
9. Select your slots and Start the server.
10. Server will be started without any errors.
I hope that you will not have any issues in this method.
Thanks.
Best Regards,
Founder of VekoLTC.
I'm HarisHayat.
Some people are very confused and worried about Installing cs1.6 Server on OGP.
Which is very hard for them so Today I want to share some steps from which you can create easily.
1. Open your panel with Admin Account and Create a gameserver
2. Select type to Counter-Strike (Linux) and Configure it.
3. When the GameServer added. Click on Administration tab.
4. Click on Addons Manager and Add Addon.
5. Fill boxes with following steps:
Name of addon: Counter-Strike 1.6 HLDS
Link of addon: http://cdn.blackfirehost.com/resources/bfhlds.zip ( 2017 New HLDS )
http://cdn.blackfirehost.com/resources/csserver.zip ( 2013 Old One )
Path: ( leave it blank )
Type of addon: Config
Addon of Game: Counter-Strike (Linux)
6. Save this addon and Go to your Gameserver, There Click on " Addons (1) "
7. Select the HLDS " Counter-Strike 1.6 HLDS " and Click on Install.
8. Wait for downloading and compressing.
9. Select your slots and Start the server.
10. Server will be started without any errors.
I hope that you will not have any issues in this method.
Thanks.
Best Regards,
Founder of VekoLTC.
Posted by: HostSailor - 05-14-2018, 05:45 PM - Forum: Cheap Providers
- No Replies
HostSailor has established itself as a trusted provider of high quality VPS Hosting, Shared 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, all servers are HP and 100% owned, we do not resell any of our VPS services.
Operating systems: ( CentOS, Debian, Fedora, Scientific, Suse and Ubuntu ) If we don't have it, we can install it for you! or you can request us to mount your own image.
-------------------------------
Discounts: 20% OFF First Month Using Coupon Code: VPS1820
-------------------------------
Linux HDD OpenVZ:
Mini Sailor:
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.59 USD/mo
-------------------------------
Sailor:
512 Guaranteed RAM
512 VSwap RAM
25 GB HDD
1 Core
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands & Romania
* $2.4 USD/mo
To check all our OpenVZ plans or place an order go to http://hostsailor.com/vps-hosting/openvz-vps
=====================================
Linux SSD OpenVZ:
Sailor:
512 Guaranteed RAM
512 VSwap RAM
15 GB SSD
1 Core
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands
* $3.99 USD/mo
To check all our SSD OpenVZ plans or place an order go to http://hostsailor.com/vps-hosting/openvz-ssd-vps/
=====================================
Linux XEN & KVM:
Sailor:
512 Guaranteed RAM
512 SWAP
15 GB HDD
2 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands ( KVM & XEN )
Hosted in Romania ( KVM )
* $3.19 USD/mo
To check all our XEN plans or place an order go to http://hostsailor.com/vps-hosting/xen-vps
To check all our KVM plans or place an order go to http://hostsailor.com/vps-hosting/kvm-vps
=====================================
Operating systems: ( Windows 2008 server datacenter R2 and Windows 2012 server datacenter R2 )
Windows KVM:
Seaman:
512 Guaranteed RAM
30 GB HDD
2 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands
* $5.99 for monthly package
To check all our Windows plans or place an order go to http://hostsailor.com/vps-hosting/kvm-vps/windows-vps/
=====================================
Payment methods:
PayPal, Bank Transfer, PaySafeCard, Skrill, WebMoney, WeChat, Payza, Bitcoin, altcoins, Qiwi, AliPay, Yandex, Western Union/ Moneygram and Perfect Money
=====================================
Features:
1. Gig 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 & Romania
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!
HostSailor is based in Dubai, UAE and the services are physically located in Netherlands, all servers are HP and 100% owned, we do not resell any of our VPS services.
Operating systems: ( CentOS, Debian, Fedora, Scientific, Suse and Ubuntu ) If we don't have it, we can install it for you! or you can request us to mount your own image.
-------------------------------
Discounts: 20% OFF First Month Using Coupon Code: VPS1820
-------------------------------
Linux HDD OpenVZ:
Mini Sailor:
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.59 USD/mo
-------------------------------
Sailor:
512 Guaranteed RAM
512 VSwap RAM
25 GB HDD
1 Core
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands & Romania
* $2.4 USD/mo
To check all our OpenVZ plans or place an order go to http://hostsailor.com/vps-hosting/openvz-vps
=====================================
Linux SSD OpenVZ:
Sailor:
512 Guaranteed RAM
512 VSwap RAM
15 GB SSD
1 Core
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands
* $3.99 USD/mo
To check all our SSD OpenVZ plans or place an order go to http://hostsailor.com/vps-hosting/openvz-ssd-vps/
=====================================
Linux XEN & KVM:
Sailor:
512 Guaranteed RAM
512 SWAP
15 GB HDD
2 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands ( KVM & XEN )
Hosted in Romania ( KVM )
* $3.19 USD/mo
To check all our XEN plans or place an order go to http://hostsailor.com/vps-hosting/xen-vps
To check all our KVM plans or place an order go to http://hostsailor.com/vps-hosting/kvm-vps
=====================================
Operating systems: ( Windows 2008 server datacenter R2 and Windows 2012 server datacenter R2 )
Windows KVM:
Seaman:
512 Guaranteed RAM
30 GB HDD
2 Cores
1 Gbit Port
512 GB Bandwidth
1 IPV4 address
Unlimited IPv6
SolusVM Control Panel
Hosted in Netherlands
* $5.99 for monthly package
To check all our Windows plans or place an order go to http://hostsailor.com/vps-hosting/kvm-vps/windows-vps/
=====================================
Payment methods:
PayPal, Bank Transfer, PaySafeCard, Skrill, WebMoney, WeChat, Payza, Bitcoin, altcoins, Qiwi, AliPay, Yandex, Western Union/ Moneygram and Perfect Money
=====================================
Features:
1. Gig 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 & Romania
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!
VekoLTC
The Best and Trusted Hosting. Which provides Free resoucres 100% Trusted.
What it will provide: FREE Webhost, FREE GameServer.
In Process: Free TLD Domain and Free VPS will be given soon.
Forum link : www.vekoltc.co
Sponsored by : Hostlease Netherlands
Requirements are Depend on Packages.
Requirements:
- Starting from 10 Post Monthly.
- Warning Level must be lower then 0%.
- 45 Points for first apply.
- Backlink (Only for WEB plan)
Free Game Server Plans:
- SAMP
- 10 Posts / Month
- 1GB Storage
- 500 Slots
- Control Panel: OGP
- FTP Access
- 10 Posts / Month
- CS 1.6
- 10 Posts / Month
- 1GB Storage
- 32 Slots
- Control Panel: OGP
- FTP Access
- 10 Posts / Month
[*]Web Host Plan 1 - Provided by Hostlease
[*]15 posts monthly ( 2 in Stock)
[*]5 GB
[*]SSD Storage
[*]10 GB Bandwidth
[*]Unlimited emails account
[*]Unlimited MySQL database
[*]Unlimited FTP accounts
[*]cPanel + Softaculous
[*]Requirements: Backlinks to Hostlease Required
[*]Web Host Plan 2 - Provided by Hostlease
[*]15 posts monthly ( 2 in Stock)
[*]5 GB Storage
[*]50 GB Bandwidth
[*]5 emails account
[*]5 MySQL database
[*]Unlimited FTP accounts
[*]cPanel + Softaculous
[*]Requirements: Backlinks to Hostlease are required.
Note: only TLD domains are allowed, makes sure you have TLD domain before apply. its our provider rules.
[*]
Web Host Plan 3 - Provided by Hostlease
[*]10 posts monthly ( 1 in stock )
[*]1-10 GB
[*]SSD Storage
[*]10-100 GB Bandwidth
[*]Unlimited emails accounts
[*]Unlimited MySQL database
[*]Unlimited FTP accounts
[*]cPanel + Softaculous
[*]Requirements: Backlink to Hostlease are required.
[*]
This Host is for Lifetime.
Best Regards,
Founder of VekoLTC.
| Welcome, Guest |
|
You have to register before you can post on our site. |
| Search Forums |
|
(Advanced Search) |
| Forum Statistics |
|
» Members: 2,271 » Latest member: orzpainter » Forum threads: 3,100 » Forum posts: 34,783 Full Statistics |
| Online Users |
|
There are currently 248 online users. » 0 Member(s) | 244 Guest(s) Bing, Applebot, Yandex, Google |
| Latest Threads |
|
⚡ EnjoyVPS.Com : 35+ Glob...
Forum: Others Last Post: RIYAD 01-06-2026, 01:21 AM » Replies: 0 » Views: 679 |
|
Get LLHOST Netherlands Fe...
Forum: Others Last Post: LLHOST 09-29-2025, 03:02 AM » Replies: 0 » Views: 1,026 |
|
Super Fast LLHOST Netherl...
Forum: Value VPS Providers Last Post: LLHOST 09-16-2025, 05:01 AM » Replies: 0 » Views: 736 |
|
Get LLHOST Netherlands Fe...
Forum: Cheap Providers Last Post: LLHOST 09-08-2025, 01:33 PM » Replies: 0 » Views: 882 |
|
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers Last Post: DewlanceHosting 08-16-2025, 03:12 AM » Replies: 0 » Views: 985 |
|
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting 08-16-2025, 03:10 AM » Replies: 8 » Views: 6,619 |
|
Budget Dedicated Servers ...
Forum: Others Last Post: HostNamaste 08-13-2025, 04:54 AM » Replies: 2 » Views: 2,029 |
|
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers Last Post: bestadvisor 07-13-2025, 09:36 AM » Replies: 0 » Views: 1,487 |
|
[Promo] 30% Discount – VP...
Forum: Cheap Providers Last Post: LLHOST 07-11-2025, 12:56 PM » Replies: 0 » Views: 1,039 |
|
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers Last Post: RIYAD 07-02-2025, 03:02 AM » Replies: 0 » Views: 2,341 |