Report this

What is the reason for this report?

Access my web site without the port in the url?

Posted on July 20, 2015

Hi,

Have a web site with gunicorn + nginx, but only achieve to access url.com.br:8000.

As I can configure to access only with url.com.br ?

tks.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

You should use Nginx as a reverse proxy for your server, Here is a sample configuration for Nginx that may do what you want:

server {
   listen       80;
   server_name  url.com.br;

   access_log  /var/log/nginx/log/url.com.br.access.log  main;
   error_log  /var/log/nginx/log/url.com.br.error.log;
   root   /usr/share/nginx/html;
   index  index.html index.htm;

   location / {
      proxy_pass  http://127.0.0.1:8000;
      proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
      proxy_redirect off;
      proxy_buffering off;
      proxy_set_header  Host  $host;
      proxy_set_header  X-Real-IP   $remote_addr;
      proxy_set_header  X-Forwarded-For   $proxy_add_x_forwarded_for;
   }
}

Feel free to ask your questions about this settings.

This comment has been deleted

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.