XFileSharing Pro - Is it possible to mask or hide ip of file servers?

Message
Author
joebloggs
Posts: 50
Joined: Mar 13, 2012 3:40 pm

Is it possible to mask or hide ip of file servers?

#1 Postby joebloggs » Apr 02, 2012 2:01 pm

So that it appears that all data is being served from the main website server?

Therefore any abuse complaints will only go to the datacenter hosting main website?

so for instance the file server from


sub1.domain.com


just looks to be dowloading from domain.com

thanks for any help

chrda
Posts: 296
Joined: Sep 14, 2009 7:16 pm

#2 Postby chrda » Apr 02, 2012 2:15 pm

There will always be a link to the fileserver.

The only way is to setup a nginx proxy. But your costs will go up as you need much more bw. And you will just the get the DMCA to the proxy instead.

There is way where you can own the IP-Range and set the dmca email there.
http://en.wikipedia.org/wiki/Shared_Whois_Project

You can also run your own network, owning both ips and the routing.

stdio
Posts: 65
Joined: Mar 27, 2012 4:05 pm

#3 Postby stdio » Apr 02, 2012 6:04 pm

I am also interested in this. Someone told me it could be made with rewrite rules but not sure how to achieve this. If anyone knows, please post here.

joebloggs
Posts: 50
Joined: Mar 13, 2012 3:40 pm

#4 Postby joebloggs » Apr 03, 2012 9:15 am

chrda wrote:There will always be a link to the fileserver.

The only way is to setup a nginx proxy. But your costs will go up as you need much more bw. And you will just the get the DMCA to the proxy instead.

There is way where you can own the IP-Range and set the dmca email there.
http://en.wikipedia.org/wiki/Shared_Whois_Project

You can also run your own network, owning both ips and the routing.


Thanks that is interesting information. :)

stdio
Posts: 65
Joined: Mar 27, 2012 4:05 pm

#5 Postby stdio » Apr 13, 2012 3:40 am

What you could do is to not display the address on the download page and display something else, example Download File. However the file server's address can still be seen in the status bar (on mouse over).

In download2.html:

original:

Code: Select all

<a href="<TMPL_VAR direct_link>"><TMPL_VAR direct_link></a>
modified:

Code: Select all

<a href="<TMPL_VAR direct_link>">Download File</a>
This will display something like Download File.

:)