Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 77 online users. » 0 Member(s) | 77 Guest(s)
|
Latest Threads |
php timeout
Forum: General Support Forum v2.x.x
Last Post: AnthonyDillard
10-01-2024, 09:00 PM
» Replies: 2
» Views: 1 ,848
|
Opening ports after insta...
Forum: General Discussions (Non-Support Related)
Last Post: TGates
09-28-2024, 11:10 AM
» Replies: 5
» Views: 243
|
Sentora v2.1.0 sitrep
Forum: Sentora Announcements
Last Post: certainstorm
09-25-2024, 05:36 PM
» Replies: 1
» Views: 970
|
Webalizer Stats not work ...
Forum: General Support Forum v1.0.x
Last Post: TGates
09-22-2024, 02:35 PM
» Replies: 4
» Views: 6 ,570
|
Apaxge2 keeps exiting...
Forum: General Support Forum v2.x.x
Last Post: TGates
09-20-2024, 11:37 AM
» Replies: 5
» Views: 211
|
Sentora update Informatio...
Forum: Sentora Announcements
Last Post: jennybaso
09-19-2024, 11:27 AM
» Replies: 3
» Views: 2 ,798
|
v2.0.0 Closed Beta testin...
Forum: Sentora Announcements
Last Post: jennybaso
09-19-2024, 11:24 AM
» Replies: 10
» Views: 30 ,243
|
\why won't my domains loa...
Forum: General Support Forum v2.x.x
Last Post: TGates
09-17-2024, 01:00 PM
» Replies: 9
» Views: 806
|
Interesting find
Forum: General Discussions (Non-Support Related)
Last Post: Me.B
09-08-2024, 04:26 AM
» Replies: 6
» Views: 1 ,872
|
Sentora v2.1.0 sitrep
Forum: Sentora Announcements
Last Post: TGates
08-31-2024, 01:16 PM
» Replies: 2
» Views: 794
|
|
|
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
|
|
|
|