Eu não entendo o problema. Estou tentando adicionar ao meu arquivo / etc / hosts um novo nome de domínio
172.16.20.150 newsletter.com
este ip é um ip de um servidor remoto que eu instalei um WAF para filtrar pedidos não desejados e depois encaminhar para este endereço 172.16.100.26 que é o endereço correto do servidor remoto de newsletter. O WAF irá desempenhar o papel de um servidor remoto. proxy reverso. Então eu criei um host virtual para o meu newsletter.com, há o código do newsletter.com.conf em sites habilitados
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port t$
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName newsletter.com
ServerAlias www.newsletter.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
ProxyPreserveHost On
ProxyRequests off
# Allow from everywhere
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /audit !
ProxyPass / http://172.16.100.26/
aqui é o resultado do ping para o meu newsletter.com
ping newsletter.com
PING newsletter.com (172.16.20.150) 56(84) bytes of data.
64 bytes from newsletter.com (172.16.20.150): icmp_seq=1 ttl=64 time=70.8 ms
64 bytes from newsletter.com (172.16.20.150): icmp_seq=2 ttl=64 time=90.6 ms
o principal problema é que quando eu coloco o newsletter.com no meu Navigator ele me mostra outro site da internet, então não está resolvendo o dns local. Alguém pode me ajudar !