D
D
Dmitry Vyatkin2015-12-04 01:59:51
Web development
Dmitry Vyatkin, 2015-12-04 01:59:51

What are the practices for showing the project to the customer during development?

I raised the site on vds, I develop it locally at home, I update the site on vds via git. How can I close access for search engines and "passers-by", except how to open access from a specific ip and so that the customer can view the site without any problems?

Answer the question

In order to leave comments, you need to log in

7 answer(s)
X
xmoonlight, 2015-12-04
@dim137

Give the Customer a link with the installation of cookies on this domain with a redirect to the main one.
On the site - check cookies: not needed - error 404.

S
Sergey Goryachev, 2015-12-04
@webirus

Setting the HTACCESS login password completely
https://htmlweb.ru/service/htpasswd.php
Prohibition of indexing through robots, enough
yapro.ru/web-master/xhtml/kak-zapretiti-indeksaciy...

A
Alexander Latyshev, 2015-12-04
@magalex

Make password authorization with .htaccess and .htpasswd

S
Saboteur, 2015-12-04
@saboteur_kiev

Raise the site on a non-standard port.

A
Andrew, 2015-12-04
@R0dger

https://ngrok.com/ - to help you .. cheap and cheerful

A
Anton Chernousov, 2015-12-04
@tech22

I restrict access by IP address. Just add a block to .htaccess:

<Limit GET>
Order deny,allow
Deny from all
Allow from 10.0.2.4
allow from 83.246.160.116
allow from 109.167.205.1
</Limit>

The customer can tell you his IP address by going to the site 2ip.ru

R
Rafael™, 2015-12-04
@maxminimus

Basic simple authorization on the server - completely solves the problem of access to the page for outsiders

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question