03-19-2012 04:21 AM
03-19-2012 07:11 AM
03-20-2012 04:45 AM
upstream alfrescoTomcatInstances {
ip_hash;
server 10.0.0.1:8080;
server 10.0.0.2:8080;
}
server {
listen 80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
root /usr/share/nginx/www;
error_page 404 share;
error_page 500 502 503 504 50x.html;
location /50x.html {
root 50x.html;
}
location /share {
proxy_pass http://alfrescoTomcatInstances/share;
}
location /alfresco {
proxy_pass http://alfrescoTomcatInstances/alfresco;
}
location ~\.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
mail {
auth_http localhost:80/mail/auth.php;
imap_capabilities "IMAP4rev1" "UIDPLUS";
server {
listen 10.0.0.3:143; #or whatever ext IP you are listening on
listen localhost:143; #for local testing
protocol imap;
proxy on;
}
}
<?php
header("Auth-Status: OK");
header("Auth-Server: 10.0.0.1");
header("AUth-Port: 143");
?>
08-29-2012 11:21 PM
02-05-2013 07:05 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.