Created
March 18, 2015 13:57
-
-
Save alexbabintsev/104ab5cf88ce2cfa5fb4 to your computer and use it in GitHub Desktop.
nginx bitrix config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name bitrix; | |
server_name_in_redirect off; | |
access_log /var/log/nginx/access.log common; | |
index index.php; | |
error_page 500 502 503 504 /500.html; | |
error_page 404 = /404.php; | |
# установить дополнительные заголовки для определения адреса клиента в статистике сайта | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $host:80; | |
client_max_body_size 1024M; #максимальный размер передаваемого файла | |
client_body_buffer_size 4M; | |
root /var/www; #корневая папка сайта | |
# включить https режим при нахождении в корне сайта файла .htsecure | |
if (-f /home/bitrix/www/.htsecure) { | |
rewrite ^(.*)$ https://$host$1 permanent; | |
} | |
#выбрать, какие данные пересылать backend серверу, а какие – показывать напрямую | |
location / { expires 3d; | |
if ($request_method = OPTIONS ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = PROPFIND ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = PROPPATCH ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = MKCOL ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = COPY ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = MOVE ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = LOCK ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($request_method = UNLOCK ) { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
} | |
location ~ ^(/extranet/docs|/docs|/workgroups|/company/profile|/bitrix/tools|/company/personal/user).*/$ { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
location ~ ^(/extranet/docs|/docs|/workgroups|/company/profile|/bitrix/tools|/company/personal/user) { | |
if (-d $request_filename) { | |
rewrite ^(.*)(/*)$ $1/ last; | |
} | |
proxy_pass http://127.0.0.1:8888; | |
} | |
location ~ ^(/bitrix/html_pages) { | |
root /var/www; | |
index [email protected]; | |
if (!-f $request_filename) { | |
rewrite ^/bitrix/html_pages(.*)@(.*)\.html$ $1.php?$2 break; | |
rewrite ^/bitrix/html_pages(.*)\.html$ $1\.php break; | |
proxy_pass http://127.0.0.1:8888; | |
} | |
} | |
location ~ \.php$ { | |
root /var/www; | |
if ($request_method = POST ) { | |
break; | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($http_cookie !~ "PHPSESSID=" ) { | |
rewrite ^(.*)\.php$ /bitrix/html_pages$1@$args.html? last; | |
} | |
proxy_pass http://127.0.0.1:8888; | |
} | |
location ~ /$ { | |
root /var/www; | |
if ($request_method = POST ) { | |
break; | |
proxy_pass http://127.0.0.1:8888; | |
} | |
if ($http_cookie !~ "PHPSESSID=" ) { | |
rewrite ^(.*)/$ /bitrix/html_pages$1/index@$args.html? last; | |
} | |
proxy_pass http://127.0.0.1:8888; | |
} | |
location ~ (/|\.php|\.asmx)$ { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
location ~ /\.ht { | |
deny all; | |
} | |
location ~ /favicon.ico { | |
proxy_pass http://127.0.0.1:8888; | |
} | |
location ~ ^(/bitrixsetup\.php)$ { | |
proxy_pass http://127.0.0.1:8888; | |
proxy_buffering off; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment