Installing on localhosat XAMPP

Unsolved Technical Support
  • Hi, there is a guide on how installing NodeBB on localhost with XAMPP, Windows?
    Thanks

  • You must install according to the usual instructions for Windows
    In the last section
    Instead of NGINX
    You must edit the XAMPP httpd.conf file
    And enable the following settings in it

    • LoadModule rewrite_module modules / mod_rewrite.so
    • LoadModule proxy_module modules / mod_proxy.so
    • LoadModule proxy_http_module modules / mod_proxy_http.so
    • LoadModule proxy_connect_module modules / mod_proxy_connect.so

    And edit the configuration section as in the following example

    <VirtualHost *:80>
    	ServerName localhost
            ProxyRequests On
    	<Proxy>
    		Order deny,allow
    		Allow from all
    	</Proxy>
    	ProxyPass / http://localhost:4567/
    	ProxyPassReverse / http://localhost:4567/
    	Header set Access-Control-Allow-Origin "*"
    </VirtualHost>
    
  • Of you're just trying to do local developmental you don't need xampp at all


Suggested Topics