
Estou usando Centos com Nginx e Puma. Gostaria de redirecionar todos os subdomínios para meu domínio raiz principal, então segui as instruções aqui -https://stackoverflow.com/questions/26801479/nginx-redirect-all-subdomains-to-main-domain. No entanto, não consigo fazê-lo funcionar. Abaixo está minha configuração
upstream projecta {
server unix:///home/rails/projecta_production/shared/sockets/puma.sock;
}
server {
listen 80;
server_name mydomein.com;
return 301 http://mydomein.com$request_uri;
root /home/rails/projecta_production/public; # I assume your app is located at this location
location / {
proxy_pass http://projecta; # match the name of upstream directive which is defined above
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~* ^/assets/ {
# Per RFC2616 - 1 year maximum expiry
expires 1y;
add_header Cache-Control public;
# Some browsers still send conditional-GET requests if there's a
# Last-Modified header or an ETag header even if they haven't
# reached the expiry date sent in the Expires header.
add_header Last-Modified "";
add_header ETag "";
break;
}
}
Se eu excluir o "retorno 301http://mydomein.com$request_uri;" linha então meu site funcionará no domínio raiz, mas não em nenhum dos subdomínios (por exemplo, visualizar um subdomínio produzirá a página de índice Nginx padrão). Como faço para redirecionar todos os subdomínios para meu domínio principal e preservar minha configuração Rails/Puma?
Responder1
No momento, você está ouvindo o redirecionamento no vhost do domínio apex. O que você precisa fazer é ter um ouvinte vhost separado que redirecione para o ápice. Este é um exemplo de ouvinte curinga redirecionando para a definição de domínio apex:
upstream projecta {
server unix:///home/rails/projecta_production/shared/sockets/puma.sock;
}
# Listener for all subdomains
server {
listen 80;
server_name *.mydomein.com;
# If you want to redirect all requests, not just subdomains, use below config instead.
# server_name _;
return 301 http://mydomein.com$request_uri;
}
# Listener for Apex Domain
server {
listen 80;
server_name mydomein.com;
root /home/rails/projecta_production/public; # I assume your app is located at this location
location / {
proxy_pass http://projecta; # match the name of upstream directive which is defined above
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~* ^/assets/ {
# Per RFC2616 - 1 year maximum expiry
expires 1y;
add_header Cache-Control public;
# Some browsers still send conditional-GET requests if there's a
# Last-Modified header or an ETag header even if they haven't
# reached the expiry date sent in the Expires header.
add_header Last-Modified "";
add_header ETag "";
break;
}
}