Hosting
Here are our hosting packages
Package 1
€3.50 per month / cancel any time
- Unlimited storage
- Exclusively for our clients
- One page websites only
- Monthly content changes
Package 2
€7.50 per month / cancel any time
- 10 GB storage
- 512 MiB memory
- 6 CPU credits per hour
- 2 vCPU
- SSL by Let’s Encrypt
- Monthly backup / restore
- WordPress installation
Package 3
€15 per month / cancel any time
- 30 GB storage
- 1 GiB memory
- 6 CPU credits per hour
- 1 vCPU
- SSL by Let’s Encrypt
- Monthly backup / restore
- CMS / APP installation
Package 4
€25 per month / cancel any time
- 50 GB storage
- 2 GiB memory
- 12 CPU credits per hour
- 1 vCPU
- SSL by Let’s Encrypt
- Monthly backup / restore
- CMS / APP installation
How to connect to your server
Obtain your credentials
The first step is to ensure that you have the required credentials for your server. After subscribing to one of our private hosting packages you will receive a zip file with the following credentials:
- IP Address
- Username / Login
- PEM and PPK key files
- Application path
- PhpMyAdmin username and password
Connect to your server via FileZilla
- Download FileZilla client from here.
- Open FileZilla Settings, SFTP, add the PEM key file and click OK.
- Go to File, Site Manager and click New Site.
- Type your server's IP address in the Host field.
- Go to Protocol and select SFTP.
- Go to Logon Type and select Ask for Password.
- Type your server's Username in User field.
- Click Connect and OK to the popup windows.
- Type your Application Path in Remote Site field and press Enter.
Connect with an SSH Client using an SSH Key
Linux and Mac OS X come bundled with SSH clients by default. In order to log in to your server, follow the steps below:
- Open the terminal on your local operating system (for example, using “Finder -> Applications -> Utilities -> Terminal” in Mac OS X or the Dash in Ubuntu).
- Set the permissions for your private key file (.pem) to 600 using this command:
chmod 600 <PEM file directory> - Connect to the server using this command:
ssh -i <PEM file directory> <Username>@<IP Address>
Connect to PhpMyAdmin
- Open the terminal on your local operating system (e.g. Terminal in Mac OS X or the Dash in Ubuntu).
- Set the permissions for your private key file (.pem) to 600 using this command:
chmod 600 <PEM file directory> - Execute this command:
ssh -N -L 8888:127.0.0.1:80 <Username>@<IP Address> -i <PEM file directory> - Open a browser and go to http://127.0.0.1:8888/phpmyadmin/index.php
- Enter your PhpMyAdmin username and password.