The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
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. |
#2
|
|||
|
|||
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; } } } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|