...
Table of Contents | ||
---|---|---|
|
Dokumenttypen für PDF
Infostore kennt eine Reihe von Dokumenttypen. Diese sind kundeninviduell in der Datei EFSDTA/EFSOBT hinterlegt.
Die jeweils gültige OBINBR für PDF muss im DtaAra-EFSWX/EFDTAARA - Stelle 12 stehen.
Hier im Beispiel also
CHGDTAARA DTAARA(EFSWX/EFDTAARA (12 1)) VALUE('6')
Timeout für den Browser konfigurieren
...
Der Wert TimeOut steuert die Wartezeit, wie lange auf eine Antwort vom Browser gewartet wird. Er wird in Sekunden angegeben.
Wenn der Eintrga Eintrag TimeOut vorhanden ist, dann können Sie ihn ändern. Wenn er nicht vorhanden ist, können Sie ihn hinzufügen.
...
3600 Sekunden bedeuten eine Stunde Wartezeit, bevor ein TimeOut eintritt.
Code Block | ||||
---|---|---|---|---|
| ||||
# Configuration originally created by Create HTTP Server wizard on Tue Jan 09 13:07:39 UTC 2007 LoadModule ibm_ssl_module /QSYS.LIB/QHTTPSVR.LIB/QZSRVSSL.SRVPGM Listen *:443 ThreadsPerChild 5 DocumentRoot /www/dirweb/htdocs Options +ExecCGI -Includes -Indexes -MultiViews LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%{Cookie}n \"%r\" %t" cookie LogFormat "%{User-agent}i" agent LogFormat "%{Referer}i -> %U" referer LogFormat "%h %l %u %t \"%r\" %>s %b" common CustomLog logs/access_log combined LogMaint logs/access_log 7 0 LogMaint logs/error_log 7 0 #========================================================================= # GZIP Options 02.06.16 #========================================================================= # Deflate Module LoadModule deflate_module /QSYS.LIB/QHTTPSVR.LIB/QZSRCORE.SRVPGM # Insert Filter for Content Types except Images AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript # SetEnvIf User-Agent ^Mozilla/4 gzip-only-text/html SetEnvIf User-Agent ^Mozilla/4\.0[678] no-gzip SetEnvIf User-Agent \bMSIE !no-gzip SetEnvIf User-Agent \bMSIE !gzip-only-text/html SetEnvIf User-Agent \bMSI[E] !no-gzip SetEnvIf User-Agent \bMSI[E] !gzip-only-text/html # # Compression Level Highest 9 - Lowest 1 DeflateCompressionLevel 3 #========================================================================= ServerName DEAET03.AETeam-GmbH.COM:80 AccessFileName .htaccess HostNameLookups On SetEnvIf "User-Agent" "Mozilla/2" nokeepalive SetEnvIf "User-Agent" "JDK/1\.0" force-response-1.0 SetEnvIf "User-Agent" "Java/1\.0" force-response-1.0 SetEnvIf "User-Agent" "RealPlayer 4\.0" force-response-1.0 SetEnvIf "User-Agent" "MSIE 4\.0b2;" nokeepalive SetEnvIf "User-Agent" "MSIE 4\.0b2;" force-response-1.0 CGIConvMode BINARY DirectoryIndex index.html SSLEngine On SSLAppName QIBM_HTTP_SERVER_DIRWEB SetEnv HTTPS_PORT 443 <Directory /> Order Deny,Allow Deny From all </Directory> <Directory /www/dirweb/htdocs> Order Allow,Deny Allow From all </Directory> <Directory /QSYS.LIB/DIRWEBCGI.LIB/> Order Allow,Deny Allow From all Options +ExecCGI SetHandler cgi-script </Directory> ScriptAlias /cgi-bin/ /QSYS.LIB/DIRWEBCGI.LIB/ |