Page 1 of 1

How can I run by entering only domain.name without :8000!!!!

Posted: 14 Apr 2019, 12:46
by michealgimies
How can I run by entering only domain.name without poing port number 8000 (not like this: domain.name:8000)?

Re: How can I run by entering only domain.name without :8000

Posted: 15 Apr 2019, 10:52
by aimeos
Which host application do you use? If it's Laravel, you have to change the APP_URL setting in the .env file

Access my web site without the port in the url?

Posted: 05 Jun 2019, 16:23
by angelagates29
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;
You should use Nginx as a reverse proxy for your server, Here is a sample configuration for Nginx that may do what you want:
  location / {
     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;
  }
}