Home > database >  i don't know how to access to my drupal website ubuntu
i don't know how to access to my drupal website ubuntu

Time:02-24

I don't know much about Drupal and Drush, but I followed all the instructions and i was able to put a Drupal project on one of my servers. The problem now is that I don't know how to access to the Drupal WebSite. Does it have a Port number that I should put after localhost or is there another way ?? enter image description here

CodePudding user response:

I'm betting you aren't listening on all interfaces. So you're mounted to 127.0.0.1, look into your settings.php for Drupal and make sure you are listening to 0.0.0.0.

CodePudding user response:

Look in your HTTP-Server settings on which ports the server is listening.

Example on nginx-server: /etc/nginx/nginx.conf

You can check and find listening ports:

shell:

netstat -nal | grep LISTEN
tcp46      0      0  *.443         *.*              LISTEN     
tcp46      0      0  *.80          *.*              LISTEN     
  • Related