This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20 ,252
» Latest member: Dailyjotting
» Forum threads: 3 ,790
» Forum posts: 22 ,989

Full Statistics

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.

Print this item

Back from vacation!
Posted by: TGates - 06-10-2018, 07:52 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Hey gang! I'm back from a nice week of fun in the sun! I will be going through the forums over the next day or two and help you out.

Print this item

Git security issue
Posted by: Me.B - 05-30-2018, 05:27 PM - Forum: General Discussions (Non-Support Related) - Replies (2)

https://blogs.msdn.microsoft.com/devops/...erability/

Update your git clients.

M B

Print this item

Guys I cant login neither in forum.bttdm.com
Posted by: Slowpoke - 03-28-2018, 05:59 AM - Forum: General Discussions (Non-Support Related) - Replies (5)

Ребята, я не могу войти ни на forum.bttdm.com

Я печатаю правильные пароли и имена пользователей, но это не работает.
Пожалуйста, помогите мне.

Print this item

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.

Print this item

I need help!
Posted by: Ron-e - 03-02-2018, 11:52 PM - Forum: General Discussions (Non-Support Related) - Replies (6)

I need help with Sentora!

Print this item

Does anyone know how to install conntrack tools on centos?
Posted by: socialsp - 02-19-2018, 04:26 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Just wondering if anyone on the community knows how to go to install conntrack tools. I googled and there is no clear tutorials, it also mentions kernel module which I'm all new to managing a vps.

Any help will be appreciated.

Sent from my SM-G955U using Tapatalk

Print this item

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;

#this
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;
#this
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

Print this item

HELP PLEASE.
Posted by: echlipse - 01-26-2018, 11:43 PM - Forum: General Discussions (Non-Support Related) - Replies (3)

Guys I cant login neither in forum.bttdm.com nor smf.bttdm.com.

I am typing correct passwords and usernames but it doesnt work.
Please help me.

Print this item

Happy Holidays! New theme and module available :)
Posted by: TGates - 12-23-2017, 05:35 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Hey gang! I have a couple presents just in time for the Holidays!

A New theme, Sentora2, which is a small update to the Sentora_Default theme changing the left sidebar from a menu to an information bar. http://forums.sentora.org/showthread.php?tid=4269

A new module, SenBrand, which allows the zadmin to add a 'Hosted by' link to the login page and the ability to use a custom logo with default styled Sentora themes. http://forums.sentora.org/showthread.php?tid=4268

Enjoy! 

(Donation link in my signature  Big Grin  )

Print this item