vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Server setup (https://vborg.vbsupport.ru/showthread.php?t=285684)

Great Dane 07-18-2012 06:48 AM

Server setup
 
Can VB run with a two server setup - front-end/back-end server?
This is in order to have the database inside a firewall for hacker protection.

need2fart 07-27-2012 09:28 AM

Like a reverse proxy? If so, yes.

Here is a nginx configuration example for a front end server connecting to your remote back end

Code:

worker_processes  4;

events {
    worker_connections  1024;
}

http {
        #create a directory for storing cached content
        proxy_cache_path  /usr/local/nginx/cache  levels=1:2    keys_zone=STATIC:10m
                                                                                        inactive=24h  max_size=1g;

        include      mime.types;
        default_type  application/octet-stream;

        gzip on;
        gzip_comp_level 3;
        gzip_proxied any;
        gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript text/x-js;
        gzip_buffers 16 8k;

        server {
                listen 80;       

                location / {
                        proxy_pass            http://37.55.112.15/; #server ip of main vbulletin site
                        proxy_set_header      Host website.net; #domain name
                        proxy_cache            STATIC;
                        proxy_cache_valid      200  1d;
                        proxy_cache_use_stale  error timeout invalid_header updating http_500 http_502 http_503 http_504;
                }
        }
}

It will serve content over gzip and cache static objects for 24 hours.


All times are GMT. The time now is 03:23 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00904 seconds
  • Memory Usage 1,710KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete