Cheap PBN setup

mariobros

Newbie
Joined
Nov 12, 2015
Messages
29
Reaction score
1
so i bought a 2gb vps from ovh and looking to buy up to 16 ip's
the server is Virtualmin on Debian 8
now let's get to the hard part. i was using cpanel on other hosting accounts I have and I unfortunately I don't have a lot of linux experience. (I did installed a site on digitalocean last year using virtualmin but it was kinda hard). Yes I knew a VPS without cpanel it will be a pain in the ass for me but I assume that. I want to learn to setup them and so on.

Anyway, is there any tutorial to install multiple domains on separate IP's on a OVH VPS using virtualmin?Maybe a blackhat guide(free or paid) for those who are using OVH to build their PBN's?
Tried to search some on google but couldn't find a detailed guide for noobies.
 
The mapping of IP addresses to domain names on a server is done through the webserver configuration.

NginX's approach is quite straight-forward: Multiple server blocks, each block has a `listen` directive where you set the IP address, followed by a `server_name` directive that specifies the domain name. This is how multiple domains using one IP addresses are handled, and so too multiple IP addresses to separate domains.

For Nginx, a Google search for "Different Domains on Different IP's on NginX" should return a stackoverflow.com result, where the first answer lays out the sample NginX config.

In Apache, I believe this called Virtual Hosts. Hosting multiple domains under one webserver, and using separate configuration files to specify which IP address to listen to for each domain.

Digital Ocean has great step-by-step documents for setting up typical VPS servers, that can be used on non-Digital Ocean VPS -- since they're mostly tutorials on the Linux level. That will have step by step guides to setting up webserver and the plethora of apps that tend to occur on the web: Wordpress, wiki, etc.
 
thank you for your reply @jasperq

i managed to install virtualmin. added a virtual server, installed wordpress, all good

the problem is i don't know how to connect my website to the vps

what I did in namesilo, my registrar:

-created a two new dns record for A record. ns1.mydomain.com and ns2.mydomain.com where I inserted my vps ip.
-set the nameservers to: ns1.mydomain.com and ns2.mydomain.com

now I don't really know the steps i need to do on virtualmin. according to their tutorial i need to do this:

After registering your nameservers at your domain name registrar -- you'll want to log into Virtualmin, select your "example.com" domain, click Server Configuration -> DNS Records, and create a new "A - IPv4 Address" record for ns1.example.com and ns2.example.com.

Lastly, you'll want to tell Virtualmin to use your nameservers when it generates NS records for new Virtual Servers that it creates. You can do that by going into 'System Settings' -> 'Server Templates' -> 'Default Settings' -> 'BIND DNS Domain', and set 'Master DNS server hostname' as well as 'Additional manually configured nameservers'

I did the part from the first paragraph
The second part I really don't know what values to put in BIND DNS Domain section from server templates.

In the Master DNS server hostname I have default vps12534xx.vps.ovh.ca. I tried to put "mydomain.com" or "ns1.mydomain.com" or my vps ip

in the Additional manually configured nameservers I put ns1.mydomain.com and ns2.mydomain.com

didn't had luck with those values. maybe i need to put something else? what i am missing?

damn i miss cpanel lol
 
Back
Top