Implante o site no apache, evite o domínio cruzado

0

No meu servidor remoto (CentOS 7.2), estou implantando o site.

No meu /var/www/html/website , eu tenho o código do frontend do meu website, e o meu httpd DocumentRoot é ele, e escute 80 port.

E no /var/www/html/python_backend está o meu código de backend do Django.
Eu uso:

python manage.py runserver xxxx:8001 

execute meu backend do Django (porque a porta 80 está sendo usada pelo frontend do site).

Mas, no entanto, o frontend do site deve solicitar as APIs de back-end do Django para obter dados de resposta. Então, se em outro computador solicitar o frontend do site, haverá muitos erros:

Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true.

Como posso resolver esse problema no apache?

Minha configuração /etc/httpd/conf/httpd.conf está abaixo:

ServerRoot "/etc/httpd"
Listen 80
Include conf.modules.d/*.conf
User apache
Group apache
ServerAdmin root@localhost
<Directory />
    AllowOverride none
    Require all denied
</Directory>
DocumentRoot "/var/www/html/website"
<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>
ErrorLog "logs/error_log"
LogLevel warn
<IfModule log_config_module>
    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>
      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
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
</IfModule>
AddDefaultCharset UTF-8
<IfModule mime_magic_module>
    MIMEMagicFile conf/magic
</IfModule>
EnableSendfile on
IncludeOptional conf.d/*.conf

Como posso configurar o httpd.conf para o problema?

    
por fanhualuojin154873 11.12.2017 / 09:44

0 respostas