skip to Main Content

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

2

Answers


  1. 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.

    Login or Signup to reply.
  2. 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     
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search