Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5 ,038
» Latest member: willams
» Forum threads: 3 ,791
» Forum posts: 23 ,022
Full Statistics
|
Online Users |
There are currently 61 online users. » 1 Member(s) | 60 Guest(s) willams
|
Latest Threads |
Poblem importing DB full ...
Forum: General Support Forum v2.x.x
Last Post: warzonecod
3 hours ago
» Replies: 5
» Views: 2 ,484
|
Bug testing help needed!
Forum: General Support Forum v2.x.x
Last Post: warzonecod
3 hours ago
» Replies: 1
» Views: 1 ,619
|
Absolute path to images
Forum: General Discussions (Non-Support Related)
Last Post: kevwebbie
Yesterday, 11:19 PM
» Replies: 2
» Views: 2 ,726
|
2 hosted domains on sento...
Forum: General Discussions (Non-Support Related)
Last Post: TGates
11-16-2024, 12:52 PM
» Replies: 6
» Views: 203
|
Can anyone suggest best S...
Forum: General Discussions (Non-Support Related)
Last Post: billmorgan
11-15-2024, 05:39 PM
» Replies: 3
» Views: 1 ,474
|
Update redirect to Sentor...
Forum: Sentora Development
Last Post: TGates
11-14-2024, 11:49 AM
» Replies: 3
» Views: 3 ,728
|
Increase disk space by ad...
Forum: General Support Forum v1.0.x
Last Post: TGates
11-06-2024, 07:27 AM
» Replies: 10
» Views: 662
|
Size of DB table x_logs t...
Forum: General Support Forum v1.0.x
Last Post: TGates
10-24-2024, 06:26 AM
» Replies: 5
» Views: 500
|
SMTPTLS port 587 Close af...
Forum: General Support Forum v2.x.x
Last Post: Ekwadorin23
10-23-2024, 09:33 PM
» Replies: 6
» Views: 1 ,968
|
Problem ssl subdomain acc...
Forum: General Support Forum v2.x.x
Last Post: ccr1969
10-22-2024, 04:11 AM
» Replies: 9
» Views: 3 ,118
|
|
|
Questions regarding install and config procedures |
Posted by: nathanstotts - 08-21-2018, 11:44 PM - Forum: General Discussions (Non-Support Related)
- No Replies
|
|
First off, I am a Windows guy, my Org's Infrastructure is all Windows, so please bear with me.
Doing some searching on this forum, I found that pretty much everything is installed on an individual server. Is it possible with Sentora to segregate the services? Having a separate DB server with a separate Mail Server; all with Ubuntu of course all while attaching to a separate storage pool? And is it possible to cluster for failover?
I'm not entirely comfortable with a single point of failure
|
|
|
Forum (activation) email issue |
Posted by: fearworks - 06-30-2018, 01:31 AM - Forum: General Discussions (Non-Support Related)
- Replies (1)
|
|
Hi,
I just want to bring to your attention an issue I have been experiencing with trying to register an account here.
My first attempt (account name "fearworksmedia") was using my mail.com email address, and I tried several times to receive the activation email but it just never came through. I have now created this account using my gmail.com email address, and I notice in Gmail that the activation email is flagged as "not encrypted".
Generally this means (afaik) that the server sending it and connecting to gmail's servers was not using a secure connection (TLS/SSL) but used a plain unsecure connection. I'm guessing that mail.com's servers simply refuse to speak to servers that don't communicate securely so it just never accepts the SMTP communication from sentora's mail server, whereas Gmail is a bit more tolerant (although I believe not for much longer).
This shouldn't be too hard to fix - I can set up an SSL certificate on my Sentora servers in about 5 minutes and configure Postfix to use secure communication so I never have this issue.
Just thought I would give you a "heads up" - if anyone says they don't receive Sentora forum emails, that's probably why.
Keith.
|
|
|
Had issues registering on site |
Posted by: sharkeymedia - 03-12-2018, 01:24 PM - Forum: General Discussions (Non-Support Related)
- Replies (1)
|
|
I kept receiving a message stating that the password was an invalid length. I had tried 3 different passwords with the right combination of letters, numbers, symbols and the smallest one was 9 in length.
The last attempt I clicked submit twice and it let me through.
Ofcourse work on sentora is higher priority than forum registration.
|
|
|
Nginx > Varnish > Apache |
Posted by: mohamadcom - 01-28-2018, 11:47 PM - Forum: General Discussions (Non-Support Related)
- Replies (4)
|
|
hello,
I successfully install Nginx & Varnish and link redirect to Apache ..
Now in my server:
For HTTP
Nginx is listen to 80 and redirect to 8083
Varnish is listen to 8083 and redirect to 8081
Apache listen to 8081
this work very will on port 80
but my problem is in port 443 how I can do it :/
I mean:
Nginx listen to 443 and redirect to 8083
Varnish listen to 8083 and redirect to 8081
Apache listen to 8081
my Nginx configuration file is:
user nginx;
worker_processes 2;
number should be as same as your CPU core
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
number indicates the connections, may be larger for large server
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/plain application/x-javascript text/xml text/css;
gzip_vary on;
server {
listen 80 default_server;
listen 443;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8083;
}
location ~ /\.ht {
deny all;
}
}
}
------------
this file work for port 80 but not work for 443
thanks
|
|
|
|