Quantcast
Channel: iRedMail — iRedMail Support
Viewing all articles
Browse latest Browse all 43438

Re: How to Install iRedmail with Discourse

$
0
0
ZhangHuangbin wrote:

Do you have Nginx configuration for Disclourse after iRedMail installation? Is it loaded by Nginx?

Yes, discourse has nginx config.

sudo nano /etc/nginx/conf.d/discourse.conf


server {
        listen 80;
        server_name  forum.tecmint.lan;

        location / {
                proxy_pass http://unix:/var/discourse/shared/standalone/nginx.http.sock:;
                proxy_set_header Host $http_host;
                proxy_http_version 1.1;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
        }
}

Here is the tutorial link....
https://www.tecmint.com/install-discour … os-ubuntu/


Viewing all articles
Browse latest Browse all 43438

Trending Articles