0

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

2pha
  • 9,798
  • 2
  • 29
  • 43

2 Answers2

0

A simple youtube/google search came up with this, walk through this 15 min tutorial and you should have Drupal and Nginx set up correctly.

JJ Asghar
  • 614
  • 5
  • 15
0

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     
Thomas
  • 76
  • 8