# Centminmod + discourse

**URL:** https://meta.discourse.org/t/centminmod-discourse/236774
**Category:** Self-hosting
**Created:** [August 21, 2022, 9:35pm UTC](https://meta.discourse.org/t/centminmod-discourse/236774 "2022-08-21T21:35:56Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Andrew\_Bond](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/andrew_bond/32/271376_2.png) [@Andrew\_Bond](https://meta.discourse.org/u/Andrew_Bond)
#### Post date: [August 21, 2022, 9:35pm UTC](https://meta.discourse.org/t/centminmod-discourse/236774/1 "2022-08-21T21:35:56Z")

</div>

Hello.  
I would love to try out the discourse platform on my centminmod LEMP stack ( [https://centminmod.com/](https://centminmod.com/) )

I have sucessfully managed to installed Docker

```plaintext
docker -v
Docker version 20.10.17, build 100c701

```

I have followed the guide for install ( [discourse/docs/INSTALL-cloud.md at main · discourse/discourse · GitHub](https://github.com/discourse/discourse/blob/main/docs/INSTALL-cloud.md)) with a few minor tweaks - I dont have a cloud server per se. Its my managed instance.

I also had to edit my `/containers/app.yml` manually.

Once I have done this I get no errors when rebuilding the app via `./launcher rebuild app `

However , I cannot connect to the docker instance either. It hits the landing page of my virtual host.

What do I need to do so that I can reverse proxy the nginx config to the docker? Or has anyone written a guide in installing discourse on centmindmod?

Thanks!

Andy

---

<div class="post-metadata">

### Author: ![RGJ](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rgj/32/523185_2.png) [@RGJ](https://meta.discourse.org/u/RGJ)
#### Post date: [August 22, 2022, 6:27am UTC](https://meta.discourse.org/t/centminmod-discourse/236774/2 "2022-08-22T06:27:31Z")

</div>

I guess this would be closest to what you are looking for [Run other websites on the same machine as Discourse](https://meta.discourse.org/t/running-other-websites-on-the-same-machine-as-discourse/17247) .

---

<div class="post-metadata">

### Author: ![Andrew\_Bond](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/andrew_bond/32/271376_2.png) [@Andrew\_Bond](https://meta.discourse.org/u/Andrew_Bond)
#### Post date: [August 25, 2022, 6:15pm UTC](https://meta.discourse.org/t/centminmod-discourse/236774/3 "2022-08-25T18:15:31Z")

</div>

I have managed to get a working discourse install.

Install docker - not covered here  
Install discourse -

```plaintext
git clone https://github.com/discourse/discourse_docker.git /var/discourse
cd /var/discourse

```

Config app.yaml in /var/discource/containers

adjust app.yml to remove port 80+443

```plaintext
## After making changes to this file, you MUST rebuild
## /var/discourse/launcher rebuild app
##
## BE *VERY* CAREFUL WHEN EDITING!
## YAML FILES ARE SUPER SUPER SENSITIVE TO MISTAKES IN WHITESPACE OR ALIGNMENT!
## visit http://www.yamllint.com/ to validate this file as needed

templates:
  - "templates/postgres.template.yml"
  - "templates/redis.template.yml"
  - "templates/web.template.yml"
  - "templates/web.socketed.template.yml"
  #- "templates/web.ratelimited.template.yml"

## which TCP/IP ports should this container expose?
## If you want Discourse to share a port with another webserver like Apache or nginx,
## see https://meta.discourse.org/t/17247 for details
expose:

  #- "25654:80" # http
  #- "443:443" # https

params:
  db_default_text_search_config: "pg_catalog.english"

  ## Set db_shared_buffers to a max of 25% of the total memory.
  ## will be set automatically by bootstrap based on detected RAM, or you can override
  db_shared_buffers: "128MB"
 
  ## can improve sorting performance, but adds memory usage per-connection
  #db_work_mem: "40MB"
 
  ## Which Git revision should this container use? (default: tests-passed)
  #version: tests-passed

env:
  LANG: en_US.UTF-8
  # DISCOURSE_DEFAULT_LOCALE: en

  ## How many concurrent web requests are supported? Depends on memory and CPU cores.
  ## will be set automatically by bootstrap based on detected CPUs, or you can override
  UNICORN_WORKERS: 2

  ## TODO: The domain name this Discourse instance will respond to
  ## Consider this as what transforms into the server_name in an Nginx configuration
  DISCOURSE_HOSTNAME: 'your.site.com'
 
  ## Uncomment if you want the container to be started with the same
  ## hostname (-h option) as specified above (default "$hostname-$config")
  #DOCKER_USE_HOSTNAME: true

  ## TODO: List of comma delimited emails that will be made admin and developer
  ## on initial signup example 'user1@example.com,user2@example.com'
  ## This email is what you'll use to log into Discourse instance the first time.
  DISCOURSE_DEVELOPER_EMAILS: 'email@your.com'

  ## TODO: The SMTP mail server used to validate new accounts and send notifications
  DISCOURSE_SMTP_ADDRESS: smtp.your.com
  DISCOURSE_SMTP_PORT: 587
  DISCOURSE_SMTP_USER_NAME: email@your.com
  DISCOURSE_SMTP_PASSWORD: addpasswordhere # WARNING a char '#' in pw can cause problems!
  ## There wouldn't be any issue like above with password if this is a JSON object

  ## The CDN address for this Discourse instance (configured to pull)
  ## see https://meta.discourse.org/t/14857 for details
  #DISCOURSE_CDN_URL: //discourse-cdn.example.com

## The Docker container is stateless; all data is stored in /shared
volumes:
  - volume:
      host: /var/discourse/shared/standalone
      guest: /shared
  - volume:
      host: /var/discourse/shared/standalone/log/var-log
      guest: /var/log

## Plugins go here
## see https://meta.discourse.org/t/19157 for details
hooks:
  after_code:
    - exec:
        cd: $home/plugins
        cmd:
          - git clone https://github.com/discourse/docker_manager.git

## Any custom commands to run after building
run:
  - exec: echo "Beginning of custom commands"
  ## If you want to set the 'From' email address for your first registration, uncomment and change:
  ## After getting the first signup email, re-comment the line. It only needs to run once.
  - exec: rails r "SiteSetting.notification_email='noreply@khophi.co'"
  - exec: echo "End of custom commands"

```

Find /usr/local/nginx/conf/conf.d  
edit the relevant conf

add

```plaintext
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;
                proxy_set_header X-Real-IP $remote_addr;

```

to location / {

rem include /usr/local/nginx/conf/503include-only.conf; with a #

also

```plaintext
#include /usr/local/nginx/conf/pre-staticfiles-local-yourdomain.com.conf;
  #include /usr/local/nginx/conf/pre-staticfiles-global.conf;
  #include /usr/local/nginx/conf/staticfiles.conf;
  #include /usr/local/nginx/conf/drop.conf;
  #include /usr/local/nginx/conf/errorpage.conf;
  #include /usr/local/nginx/conf/vts_server.conf;

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [September 24, 2022, 6:16pm UTC](https://meta.discourse.org/t/centminmod-discourse/236774/4 "2022-09-24T18:16:30Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
