Eu tenho um serviço rodando via npm na porta 3000.
Minha configuração do nginx é assim:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html/public/;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
return 301 http://fake.url:3000$request_uri;
}
Está funcionando, posso abrir o site com o navegador. Mas na URL aparece :3000. Como posso removê-lo do URL?
Responder1
server {
listen 80 default_server;
listen [::]:80 default_server;
location {
proxy_pass http://fake.url:3000;
}
}