The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Is it possible? I have seen 0 information on it when it comes to vb3 and ngix.
|
|
#2
|
|||
|
|||
|
Do you mean nginx, the webserver? nginx will work with pretty much anything.
The only problem might be converting any .htaccess rewrite rules to nginx's format. |
|
#3
|
|||
|
|||
|
Yup nginx, sorry. But VB3 doesnt have a .htaccess =/
|
|
#4
|
|||
|
|||
|
If you don't have a .htaccess file then that's perfectly fine, that means you don't have to copy over any rewrite rules which makes it a lot easier for you.
|
|
#5
|
||||
|
||||
|
vBulletin 3 has no rewrite rules by default, so why do you think you need htaccess support?
|
|
#6
|
|||
|
|||
|
Here is my current config that works 95%
Code:
server {
listen 80;
server_name DOMAIN;
#return 301 https://$server_name$request_uri;
open_file_cache max=100000 inactive=40s;
open_file_cache_valid 60s;
open_file_cache_min_uses 2;
open_file_cache_errors on;
# Main location
location / {
proxy_pass http://IP;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}}
My current setup CLOUDFLARE -> NGINX -> Apache |
|
#7
|
|||
|
|||
|
What's the reason behind making nginx a proxy server in this case?
Anyway it seems to me that the IP/port where you're forwarding the requests to is not valid or not reachable. |
|
#8
|
|||
|
|||
|
Quote:
How can it not be valid for posting threads but valid for everything else? --------------- Added [DATE]1429820747[/DATE] at [TIME]1429820747[/TIME] --------------- Also I just found out I can make small threads but not long threads without the timeout. |
|
#9
|
|||
|
|||
|
Quote:
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|