Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. xpcontact
    X
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 39
    • Best 0
    • Groups 0

    xpcontact

    @xpcontact

    0
    Reputation
    440
    Profile views
    39
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    xpcontact Follow

    Latest posts made by xpcontact

    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      @planner you bet it right! I want ONLY nodebb to run @forum.caffeh.com, planning to install YUI or Docpad in the caffeh.com and to let my server IP empty (or default nginx file)
      I think my problem is that I have disabled all virtualhost support, that forum is my "default virtual host". How to fix that?

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      Finally there is a light!
      I do not remember the steps exactly, but mainly if someone having the same problem (running CentOS 6) you need to:

      nano /etc/nginx/conf.d/virtual.conf

      add the code what was already mentioned many time:
      https://github.com/designcreateplay/NodeBB/wiki/Configuring-nginx-as-a-proxy-to-NodeBB
      So my problem was that I was not able to figure out the right files to edit! (when you guide people, you might always remind the path or mention exact file need to be edited - what is obvious for you, might be obscure for others)
      Now the forum works fine, but there is a new problem:
      I want to run nodebb only at http://forum.caffeh.com (as sub-folder or sub-domain) but I can see it is same running at the root (caffeh.com ) and at the server IP 37.59.29.104
      My virtual.conf file:

      server {
      listen 80;

      server_name forum.caffeh.com;
      
      location / {
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header Host $http_host;
          proxy_set_header X-NginX-Proxy true;
      
          proxy_pass http://127.0.0.1:4567/;
          proxy_redirect off;
      
      }
      

      }

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      @kelso Thank you for the effort to answer me 🙂
      I am running only nginx (I deactivated httpd via cpanel) / Centos 6, (by the way I can't find this config.json file ?)

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      Any useful information how to run nodebb forum without the :4567 port ?

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      @planner it is not a cloud... it is a dedicated server from OVH... (the cpanel mainly for my customer, they did not like virtualmin nor ispaconfig)

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      I would still need the apache, because of the cpanel 😞 (at least I know that I need the cpanel 🙂 )
      I will try to work around using that tuts from DigitalOcean. Thx bentael!

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      @bentael I am running CentOS 6

      posted in General Discussion
      X
      xpcontact
    • RE: Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      That s good question, basically I do have Cpanel running (can it run only on Nginx?) I setup this server just to install NodeBB.

      posted in General Discussion
      X
      xpcontact
    • Perfect guideline for dummies to: "How To Configure Nginx as a Front End Proxy for Apache"

      It would be useful for newbies to have simple and clear step-by-step guideline how to setup Nginx as a front end proxy for Apache.

      posted in General Discussion
      X
      xpcontact
    • RE: Removing nodebb totally

      @frissdiegurke
      Thank you, I am using redis db... I did re-install nodebb, looks easy and fine: http://forum.caffeh.com:4567/
      Now my real problem will be again, how to configure nginx as proxy for apache server... I tried (for last 5 days) all existing solution what everyone suggested in vain 🙂
      but I AM NOT GOING TO GIVE UP, I love NodeBB 🙂

      posted in General Discussion
      X
      xpcontact