proibido o erro 4.3 no apache no ubuntu para o meu script do flask

0

Eu criei meu serviço de balão e hospedado no apache seguindo este tutorial mas depois de configurar Quando vou ao meu localhost diz,

Forbidden

You don't have permission to access / on this server. Apache/2.4.18 (Ubuntu) Server at localhost Port 80

Por favor ajude.

arquivo apache2.conf:

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Require all denied
</Directory>

<Directory /usr/share>
    AllowOverride None
    Require all granted
</Directory>

<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>
AccessFileName .htaccess

<FilesMatch "^\.ht">
    Require all denied
</FilesMatch>

LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

etc/apache2/sites-available/flask.conf file:

<VirtualHost *:80>
            ServerName 192.168.175.35
            ServerAdmin [email protected]
            WSGIScriptAlias / /var/www/flask/flask.wsgi
            <Directory /var/www/flask/flask/>
                    Order allow,deny
                    Allow from all
            </Directory>
            Alias /static /var/www/flask/flask/static
            <Directory /var/www/flask/flask/static/>
                    Order allow,deny
                    Allow from all
            </Directory>
            ErrorLog ${APACHE_LOG_DIR}/error.log
            LogLevel warn
            CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Por favor ajude, obrigado antecipadamente !. Por favor, deixe-me saber se você precisar de mais detalhes.

    
por pyd 22.02.2018 / 10:23

0 respostas