A
A
Alexander Krysko2018-05-17 15:25:27
Apache HTTP Server
Alexander Krysko, 2018-05-17 15:25:27

How to remove 403 error?

Good day, friends. I decided to master CENTOS and launch my website on it. Installed LAMP, and threw the site, but knocks out a 403 error . 185.25.116.14
httpd.conf

#
#
ServerRoot "/etc/httpd"
#

Listen 80
#
Include conf.modules.d/*.conf
User apache
Group apache
ServerAdmin [email protected]
ServerName 185.25.116.14:80
<VirtualHost *:80>
DocumentRoot /var/www/craftdevelop/public
<Directory /var/www/craftdevelop/public>
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
</Directory>
</VirtualHost>
#
# Deny access to the entirety of your server's filesystem. You must
# explicitly permit access to web content directories in other

<Directory />
    AllowOverride none
    Require all denied
</Directory>

#
DocumentRoot "/var/www"
#
#
<Directory "/var/www">
    AllowOverride None
    # Allow open access:
    Require all granted
</Directory>

# Further relax access to the default document root:
<Directory "/var/www/craftdevelop/public">

    Options Indexes FollowSymLinks
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>
#
<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

#
#
<Files ".ht*">
    Require all denied
</Files>

#
#
ErrorLog "logs/error_log"

#
LogLevel warn

<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
     #
    CustomLog "logs/access_log" combined
</IfModule>

<IfModule alias_module>
 #
    ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

</IfModule>

#
#
<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule mime_module>
    #
    #
    TypesConfig /etc/mime.types
    #
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    #
AddDefaultCharset UTF-8

<IfModule mime_magic_module>
    #
    #
    MIMEMagicFile conf/magic
</IfModule>

#
#EnableMMAP off
EnableSendfile on
#
# Load config files in the "/etc/httpd/conf.d" directory, if any.
IncludeOptional conf.d/*.conf

site.conf
<VirtualHost *:80>
    DocumentRoot /var/www/craftdevelop/public
    ServerName 185.25.116.30

    <Directory /var/www/craftdevelop/public>
        AllowOverride All
    </Directory>
</VirtualHost>

I will be very grateful for your help. I googled but something is wrong.
Thank you.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question