htmlmysqllinuxamazon-ec2phpmyadmin

No such file or directory : var/www/html in ec2 instance


Deleting as this no longer meets guidelines. Thanks


Solution

  • Do you already have a web server like Nginx / Apache running? If not you may want to install one first, along with PHP as this should set up the directory structure.

    If you do then you can just use the 'mkdir' command to create these directories as required and then modify your web server configuration to point to /var/www/html

    For example with Apache, my configuration in /etc/httpd/conf/httpd.conf contains:

    <VirtualHost *:80>
    DocumentRoot /var/www/html
    ServerName test
    </VirtualHost>
    

    Essentially the specific directory shouldn't really matter too much as you can select which one to use in the configuration, /var/www/html is just considered a default location.