我希望将我的服务器的IP重写为域名网址,但我正在努力弄清楚如何实现这一目标。
例如,当我在浏览器中输入213.34.54.xxx时,我希望将其重写为mydomain.com并且不显示IP地址。
我目前的配置如下:
/etc/nginx/nginx.conf
user www-data;
worker_processes 2;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
server_names_hash_bucket_size 64;
sendfile on;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/mydomain;
}
的/ etc / nginx的/启用的站点 - / MYDOMAIN
upstream unicorn {
server unix:/tmp/unicorn.mydomain.sock fail_timeout=0;
}
server {
listen 80 default;
server_name localhost;
root /home/deployer/apps/mydomain/current/public;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @unicorn;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unicorn;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
我已经尝试将其添加到 mydomain 配置文件中的server指令中:
rewrite ^ $scheme://mydomain.com$request_uri redirect;
但我的浏览器中出现了太多的REDIRECTS ERROR。
至少,我可以通过在服务器指令中使用它来阻止显示IP地址:
if ($host !~* ^www\.) {
rewrite ^(.*)$ http://www.$host$1 permanent;
}
但是,这被列为nginx网站上的一个陷阱:(
对我可能做错的任何见解都会非常感激!
谢谢!
答案 0 :(得分:11)
实际上上面的答案不起作用(至少对我而言)。我想,既然问题已经提出,提问者找到了他的解决方案,但是自从我搜索谷歌和很多链接到这里,也许这个解决方案将帮助其他人,只需将其添加到您的conf文件中:
server {
server_name 162.13.171.178;
# you can add other server_name if you need other IPs
# or domain names such as without the www
add_header X-Frame-Options "SAMEORIGIN";
return 301 $scheme://www.example.com$request_uri;
}
答案 1 :(得分:0)
将新服务器实例添加到我的域vhost文件的底部,如下所示:
server {
listen xxx.xxx.xxx.xxx:80;
server_name xxx.xxx.xxx.xxx;
rewrite ^ http://example.com$request_uri? permanent;
}
/etc/init.d/nginx reload
注意:我添加此重写的唯一原因是因为我的某个服务器的某个IP地址最终出现在Google搜索结果中,这可能会导致重复内容出现问题。如果没有发生这种情况,我不会打扰添加重写。您可以通过搜索IP地址来检查您的服务器IP是否在搜索结果中:
网站:xxx.xxx.xxx.xxx 强>
答案 2 :(得分:0)
您需要为重写规则编写服务器块。 单个块可容纳多个server_name
元素。
# Say this is your default BIG block
server {
listen 80 default_server;
server_name example.com;
passenger_enabled on;
rails_env production;
root /var/www/your_app/current/public/;
}
# Requests made to WWW and directly to the IP address should be
# forwarded to the BIG block
server {
listen 80;
server_name www.example.com 55.55.55.55;
return 301 http://example.com$request_uri;
}
答案 3 :(得分:0)
也可以使用一个服务器块从多个IP重定向。
server {
listen 80;
listen 443;
server_name 172.20.0.2 172.20.0.3 172.20.0.4;
return 301 $scheme://www.yourdomain.com$request_uri;
}
还有一个常规的PCI合规性发现(泄露私有IP)可以使用此策略解决。
答案 4 :(得分:-1)
在您的Nginx配置文件中,添加以下服务器块。
server {
listen 80 default;
rewrite ^ http://your_domain_name.com$request_uri permanent;
}