Parameters to use the GUI on a Apache Server
search cancel

Parameters to use the GUI on a Apache Server

book

Article ID: 10858

calendar_today

Updated On:

Products

Dynamic Capacity Intelligence

Issue/Introduction

This article shows necessary and additional parameters to use the GUI at an Apache Server.

 


 



Environment

Release: CADCIU00200-1.5-Dynamic Capacity Intelligence-MSU
Component:

Resolution

Parameters to use the GUI on an Apache-Server

This changes have to be done in the httpd-config-file:

# Port and Path
Listen PORT
Alias /dci "/var/dci/"

<Directory "/var/dci">
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
    CharsetSourceEnc IBM-1047
    CharsetDefault ISO8859-1
    AddEncoding text/html html
    AddType text/html .html
    AddEncoding text/javascript js        
    AddType text/javascript .js     
    AddEncoding text/xml xml
    AddType text/xml .xml
    AddEncoding text/csv csv
    AddType text/csv .csv
</Directory>

 

After upgrade the system to z/OS V 2.2 or later you have to modify this parameters:

<Directory "/var/zdc">
    Options None
    AllowOverride None
    Require all granted
    CharsetSourceEnc IBM-1047
    CharsetDefault ISO8859-1
#    AddEncoding text/html html                                         
    AddType text/html .html                                            
#    AddEncoding text/javascript js
    AddType text/javascript .js
#    AddEncoding text/xml xml
    AddType text/xml .xml
#    AddEncoding text/csv csv
    AddType text/csv .csv
</Directory>

Additional Information

This is for customer which use an Apache Server.