Tôi có một thiết lập proxy ngược như sau trong Apache:
Máy chủ A có địa chỉ www.proxyserver.com/graphql là máy chủ proxy ngược.
Nó ánh xạ tới: Máy chủ B với địa chỉ example.com
Loại này hoạt động đúng trong môi trường phát triển.
Ví dụ: khi máy chủ gọi một yêu cầu /graphql?query1=query1&query2=query2
sau đó nó chuyển hướng đến https://proxyserver.com/graphql?query1=query1&query2=query2
Nhưng trong apache, nó không hoạt động. Nó gọi http://example.com/graphql?query1=query1&query2=query2
Làm thế nào để tôi khắc phục điều này?
Proxy đảo ngược của tôi được định cấu hình như sau trên Máy chủ B (www.example.com):
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/example.com/build
ServerName example.com
ServerAlias www.example.com
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ProxyPreserveHost On
ProxyPass "/graphql" "https://proxyserver.com/graphql"
ProxyPassReverse "/graphql" "https://proxyserver.com/graphql"
</VirtualHost>
và đây là cấu hình máy chủ A
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin [email protected]
DocumentRoot /etc/pub
ServerName proxyserver.com
ErrorLog logs/cezanno-error_log
LimitRequestBody 104857600
<Proxy "unix:/var/opt/remi/php73/run/php-fpm/php73-fpm.sock|fcgi://proxyserver.com">
ProxySet timeout=100
</Proxy>
<FilesMatch \.(php|phar)$>
SetHandler "proxy:fcgi://proxyserver.com"
</FilesMatch>
SSLCertificateFile /path/to/cert/directory/cert.pem
SSLCertificateKeyFile /path/to/cert/directory/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /path/to/cert/directory/chain.pem
</VirtualHost>
</IfModule>