Hi,
I installed OX on our Ubuntu Server using the installation instructions for Debian/NGU 7.0 (Wheezy).
the installation finished with no errors, and the OX process is running.
Unfortunately, it seems like there are problem with my Grizzly and/or Apache Communication.
When I open our OX website, I get:
"Connection error The service is not available right now. Retry"
Bildschirmfoto vom 2016-04-08 12:01:12.png
When I try SSH port forwarding and directly go to the Grizzly, I get:
Resource identified by path '/', does not exist.
Bildschirmfoto vom 2016-04-08 12:02:38.png
Here is my Apache Config file:
Can someone help my out on this?
I installed OX on our Ubuntu Server using the installation instructions for Debian/NGU 7.0 (Wheezy).
the installation finished with no errors, and the OX process is running.
Unfortunately, it seems like there are problem with my Grizzly and/or Apache Communication.
When I open our OX website, I get:
"Connection error The service is not available right now. Retry"
Bildschirmfoto vom 2016-04-08 12:01:12.png
When I try SSH port forwarding and directly go to the Grizzly, I get:
Resource identified by path '/', does not exist.
Bildschirmfoto vom 2016-04-08 12:02:38.png
Here is my Apache Config file:
Code:
<virtualhost *:443>
ServerName ox.myhost.de
ServerAdmin admin@myhost.de
SSLEngine On
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SSLCertificateFile /etc/ssl/myhost.crt
SSLCertificateKeyFile /etc/ssl/private/myhost.key
SSLCertificateChainFile /etc/ssl/intermediate.crt
#Internet Explorer SSL Einstellung:
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
#RequestHeader set X-Forwarded-Proto "https"
#Man-In-The-Middle-Attacks verhindern mit Strict Transport Security
# <IfModule mod_headers.c>
# Header always set Strict-Transport-Security "max-age=15768000; includeSu$
# KeepAlive On
# KeepAliveTimeout 100
# MaxKeepAliveRequests 200
# </IfModule>
DocumentRoot /var/www/appsuite
<Directory /var/www/appsuite>
Options Indexes FollowSymLinks MultiViews SymLinksIfOwnerMatch
AllowOverride None
Order allow,deny
allow from all
RedirectMatch ^/$ /appsuite/
</Directory>
<Directory /var/www/appsuite>
Options None +SymLinksIfOwnerMatch
AllowOverride Indexes FileInfo
</Directory>
# deflate
AddOutputFilterByType DEFLATE text/html text/plain text/javascript appl$
# pre-compressed files
AddType text/javascript .jsz
AddType text/css .cssz
AddType text/xml .xmlz
AddType text/plain .po
AddEncoding gzip .jsz .cssz .xmlz
SetEnvIf Request_URI "\.(jsz|cssz|xmlz)$" no-gzip
ExpiresActive On
<Location /var/www/appsuite>
# Expires (via ExpiresByType to override global settings)
ExpiresByType image/gif "access plus 6 months"
ExpiresByType image/png "access plus 6 months"
ExpiresByType image/jpg "access plus 6 months"
ExpiresByType image/jpeg "access plus 6 months"
ExpiresByType text/css "access plus 6 months"
ExpiresByType text/html "access plus 6 months"
ExpiresByType text/xml "access plus 6 months"
ExpiresByType text/javascript "access plus 6 months"
ExpiresByType text/x-js "access plus 6 months"
ExpiresByType application/x-javascript "access plus 6 months"
ExpiresDefault "access plus 6 months"
Header append Cache-Control "private"
Header unset Last-Modified
Header unset Vary
# Strip version
RewriteEngine On
RewriteRule v=\w+/(.+) $1 [L]
# Turn off ETag
Header unset ETag
FileETag None
</Location>
<Location /var/www/appsuite/index.html>
ExpiresByType text/html "now"
ExpiresDefault "now"
Header unset Last-Modified
Header set Cache-Control "no-store, no-cache, must-revalidate, $
# Turn off ETag
Header unset ETag
FileETag None
</Location>
</virtualhost>
Comment