在Apache代理中为JSON设置标题

您好,我尝试在Apache代理中设置标头JSON。 我需要这个在网站上testinglogin。 下面我把我的Apacheconfiguration。

<VirtualHost *:80> ServerName zx.xxxxxxx.xxxxxx.fr ServerAdmin [email protected] AddDefaultCharset utf-8 AddType 'application/json; charset=UTF-8' .json SSLProxyEngine On RequestHeader set Host "xxxxxxx.xxxxxx.fr" ProxyPreserveHost On ProxyPass / https://11.111.111.111/ ProxyPassReverse / https://11.111.111.111/ LogLevel warn ErrorLog /var/log/httpd/zx.xxxxxxx.xxxxxx.fr.log CustomLog /var/log/httpd/zx.xxxxxxx.xxxxxx.fr.log combined </VirtualHost> 

请给我一些build议,如果我做错了。

问候Mick