I installed httpd on the host and changed the httpd.conf file as follows
ServerRoot "/etc/httpd"
Listen 80
Include conf.modules.d/*.conf
User apache
Group apache
ServerAdmin root@localhost
<Directory />
AllowOverride none
Require all granted
</Directory>
DocumentRoot "/home/admin/domains/morabi.app/public_html"
<Directory "/var/www">
AllowOverride None
Require all granted
</Directory>
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<Files ".ht*">
Require all denied
</Files>
when i loaded my ip address in browser it has "Forbidden You don't have permission to access / on this server." error. and /home/admin/domains/morabi.app permission is 755 also files are loaded but my ip http://x.x.x.x/ has forbidden error
You will need to add the following to it:
And restart Apache.
This is something that many people forget, and some don't know about. Please be aware of this.
Edit
Tip: Take a backup before running these commands, I am not responsible if anything bad happens to the files.
Try checking the owner of the folder public_html by running
ls -la
inside morabi.app inside the terminal, if it is not your user or apache try running this command in the directory morabi.app:Make sure you are running this as your primary user which you use, I suggest you not to change it to root.
This above command is going to change the owner of the folder and the files inside it. Change
$USER
toapache
if changing the owner to the user running the commands doesn't work, but always take a backup before as I said above.