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

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
michealgimies
Posts: 2
Joined: 14 Apr 2019, 12:44

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

Post by michealgimies » 14 Apr 2019, 12:46

How can I run by entering only domain.name without poing port number 8000 (not like this: domain.name:8000)?
Last edited by michealgimies on 16 Apr 2019, 19:15, edited 1 time in total.

User avatar
aimeos
Administrator
Posts: 7836
Joined: 01 Jan 1970, 00:00

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

Post by aimeos » 15 Apr 2019, 10:52

Which host application do you use? If it's Laravel, you have to change the APP_URL setting in the .env file
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

angelagates29
Posts: 1
Joined: 01 Jun 2019, 06:13

Access my web site without the port in the url?

Post by angelagates29 » 05 Jun 2019, 16:23

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;
  }
}

Post Reply