Nginx for Brain Cms

Brunx2it

New Member
Jun 13, 2021
5
0
Hi, I tried to configure Nginx with Braincms but apparently I couldn’t because it gives me 404 error:
Code:
2021/06/14 12:35:07 [error] 7180#6020: *1 connect() failed (10061: Unable to establish connection. Persistent rejection of target computer) while connecting to upstream, client: 127.0.0.1, server: localhost, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "127.0.0.1"

This is how I tried to configure, I don’t know if it’s even remotely right:
Code:
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       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  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

location / {
root html;
index index.php;
  rewrite ^/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=$1;
}

location /news {
  rewrite ^/news/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=news&id=$1;
}

location /home {
  rewrite ^/home/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=home&user=$1;
}

location /swf {
  rewrite ^/swf/habbo-imaging/badge/([a-zA-Z0-9_-]+)(|/)$ /swf/habbo-imaging/badge.php?badge=$1;
}

location /register {
  rewrite ^/register/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=register&userref=$1;
}

location /newpassword {
  rewrite ^/newpassword/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=newpassword&key=$1;
}





        location /.htaccess {
          deny all;
        }

        location ~ “\.(tpl,sql)$” {
          deny all;
        }

        location /403.shtml {
          allow all;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  C:/nginx/html/$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.php index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.php index.html index.htm;
    #    }
    #}

}
 

Brunx2it

New Member
Jun 13, 2021
5
0
Give me your htaccess, and ill help you
Code:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)(|/)$ index.php?url=$1
RewriteRule ^news/([a-zA-Z0-9_-]+)(|/)$ index.php?url=news&id=$1
RewriteRule ^home/([a-zA-Z0-9_-]+)(|/)$ index.php?url=home&user=$1
RewriteRule ^swf/habbo-imaging/badge/([a-zA-Z0-9_-]+)(|/)$ swf/habbo-imaging/badge.php?badge=$1
RewriteRule ^register/([a-zA-Z0-9_-]+)(|/)$ index.php?url=register&userref=$1
RewriteRule ^newpassword/([a-zA-Z0-9_-]+)(|/)$ index.php?url=newpassword&key=$1
 

boz

don daddy
Mar 23, 2021
152
74
Code:
location / {
  rewrite ^/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=$1;
}

location /news {
  rewrite ^/news/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=news&id=$1;
}

location /home {
  rewrite ^/home/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=home&user=$1;
}

location /swf {
  rewrite ^/swf/habbo-imaging/badge/([a-zA-Z0-9_-]+)(|/)$ /swf/habbo-imaging/badge.php?badge=$1;
}

location /register {
  rewrite ^/register/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=register&userref=$1;
}

location /newpassword {
  rewrite ^/newpassword/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=newpassword&key=$1;
}
 

Brunx2it

New Member
Jun 13, 2021
5
0
Code:
location / {
  rewrite ^/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=$1;
}

location /news {
  rewrite ^/news/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=news&id=$1;
}

location /home {
  rewrite ^/home/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=home&user=$1;
}

location /swf {
  rewrite ^/swf/habbo-imaging/badge/([a-zA-Z0-9_-]+)(|/)$ /swf/habbo-imaging/badge.php?badge=$1;
}

location /register {
  rewrite ^/register/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=register&userref=$1;
}

location /newpassword {
  rewrite ^/newpassword/([a-zA-Z0-9_-]+)(|/)$ /index.php?url=newpassword&key=$1;
}
I have to put this in nginx.conf, right?
It gives me this error that doesn’t allow nginx to start
Code:
nginx: [emerg] "location" directive is not allowed here in C:\tools\nginx-1.20.1/conf/nginx.conf:1
 

Users who are viewing this thread

Top