Hallo,
ich habe auf Ubuntu 14.04 OX App Suite installiert. Dabei ging ich nach folgender Anleitung vor:
http://oxpedia.org/wiki/index.php?ti...for_Debian_7.0
Die Installation hat soweit geklappt. Allerdings hänge ich beim Kapitel "configure services" . Wenn ich versuche, die Weboberfläche zu erreichen erhalte ich "Connection Error The service is not available right now."
connerror.png
Wenn ich dann über SSH-Port-Forwarding direkt auf den Port 8009 gehe, auf dem Grizzly läuft, erhalte ich:
Not Found
Resource identified by path '/', does not exist.
Grizzly/2.2.22
grizzly.png
Der OX Prozess läuft, dass OX Logfile ist leer. Im Apache sind alle Module wie auch mod_proxy und mod_proxy_http aktiviert.
Meine Apache-Konfiguration habe ich mir aus verschiedenen Google-Quellen zusammengepastet.
Vielen Dank für die Hilfe.
ich habe auf Ubuntu 14.04 OX App Suite installiert. Dabei ging ich nach folgender Anleitung vor:
http://oxpedia.org/wiki/index.php?ti...for_Debian_7.0
Die Installation hat soweit geklappt. Allerdings hänge ich beim Kapitel "configure services" . Wenn ich versuche, die Weboberfläche zu erreichen erhalte ich "Connection Error The service is not available right now."
connerror.png
Wenn ich dann über SSH-Port-Forwarding direkt auf den Port 8009 gehe, auf dem Grizzly läuft, erhalte ich:
Not Found
Resource identified by path '/', does not exist.
Grizzly/2.2.22
grizzly.png
Der OX Prozess läuft, dass OX Logfile ist leer. Im Apache sind alle Module wie auch mod_proxy und mod_proxy_http aktiviert.
Meine Apache-Konfiguration habe ich mir aus verschiedenen Google-Quellen zusammengepastet.
Code:
<VirtualHost *:80> ServerName ox.meinedomain.de # Das folgende erzwingt SSL RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} </VirtualHost> <virtualhost *:443> ServerName ox.meinedomain.de ServerAdmin admin@meinedomain.de SSLEngine On SSLProtocol all -SSLv2 SSLCipherSuite ALL:!ADH:!SSLv2:RC4+RSA:+HIGH:+MEDIUM SSLCertificateFile /etc/ssl/meinedomain.crt SSLCertificateKeyFile /etc/ssl/private/meinedomain.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; includeSubDomains; prelo$ # 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 application/javascript text/css text/xml application/xml text/x-js application$ # 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" 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, post-check=0, pre-check=0" # Turn off ETag Header unset ETag FileETag None </Location>
Vielen Dank für die Hilfe.