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 ??
Asked
Active
Viewed 93 times
0

2pha
- 9,798
- 2
- 29
- 43
-
Point your (sub-)domain to the folder where Drupal's index.php resides. That's all. – leymannx Feb 23 '22 at 22:04
-
how i can do that ? – fzbenyahya Feb 24 '22 at 10:52
2 Answers
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
-
There is no 0.0.0.0 in my setting.php file how do I make it listen to 0.0.0.0. – fzbenyahya Feb 24 '22 at 10:55
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