Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 129 online users. » 0 Member(s) | 129 Guest(s)
|
Latest Threads |
Sentoa v 2 install script...
Forum: General Support Forum v2.x.x
Last Post: TGates
12-12-2024, 06:29 AM
» Replies: 2
» Views: 84
|
Ubuntu 24??
Forum: General Discussions (Non-Support Related)
Last Post: kevwebbie
12-10-2024, 12:22 AM
» Replies: 1
» Views: 78
|
Useful backlink checking ...
Forum: General Discussions (Non-Support Related)
Last Post: Me.B
12-09-2024, 03:05 AM
» Replies: 1
» Views: 656
|
Apache giving error in
Forum: General Discussions (Non-Support Related)
Last Post: TGates
12-08-2024, 06:34 PM
» Replies: 3
» Views: 96
|
Can anyone suggest best S...
Forum: General Discussions (Non-Support Related)
Last Post: rinkclared
11-28-2024, 04:52 PM
» Replies: 4
» Views: 1 ,720
|
Absolute path to images
Forum: General Discussions (Non-Support Related)
Last Post: rinkclared
11-28-2024, 04:45 PM
» Replies: 3
» Views: 3 ,025
|
Installed fresh on ubuntu...
Forum: General Support Forum v2.x.x
Last Post: Me.B
11-28-2024, 01:24 PM
» Replies: 5
» Views: 366
|
2 hosted domains on sento...
Forum: General Discussions (Non-Support Related)
Last Post: TGates
11-16-2024, 12:52 PM
» Replies: 6
» Views: 504
|
Update redirect to Sentor...
Forum: Sentora Development
Last Post: TGates
11-14-2024, 11:49 AM
» Replies: 3
» Views: 4 ,233
|
Increase disk space by ad...
Forum: General Support Forum v1.0.x
Last Post: TGates
11-06-2024, 07:27 AM
» Replies: 10
» Views: 1 ,275
|
|
|
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
|
|
|
Ideas for better word of mouth for sentora |
Posted by: testing - 11-17-2017, 11:14 PM - Forum: General Discussions (Non-Support Related)
- No Replies
|
|
I see that we have a premium service for faster support so that earned money could be used for sentora development. But in the reality it sounds like almost no one is using it up seeing the current threads.
To improve sentora funds and name, we can provide services such as installation of SSL, installation of Sentora itself, minor correction. Like asking, we can install sentora for you for $5 dollars or something so that users will feel like if there will some issue on their site they can get fast help from sentora team. I know $5 dollar isn't much but it's better to have some funds so that non-active team member might plan to help it move forward or may be new active members can come to help it grow. I also know many people offer services on fiverr but it helps the fiverr gig person, not the sentora, and to keep sentora alive for better development, we need to show users we can get better services, support and provide faster help for them.
Also, more member or users means more name spreading for sentora and more funds, if we solve their minor issues as soon as possible. For sure, who doesn't want paid services, can take help in forum itself but in my humble opinion it would be good thing to do.
|
|
|
Thank you! |
Posted by: nark - 11-10-2017, 09:47 AM - Forum: General Discussions (Non-Support Related)
- Replies (1)
|
|
Hi!
I am using Sentora for 2 weeks now and I am amased by how it works and by all the plugins and the involvement of the developers.
I want to support this project as it is free and it got my job done really fast (my host provider ended it's services and had to setup my own hosting in 12 hours and migrating 200gb+ of mail and websites, dns's and all works flawlessly!
So, how can I support this project? How can I donate?
I encourage everyone who benefit from sentora half as much as I did to do so!
Thank you and keep up the wonderful work that you do!
|
|
|
|