slava
Пользователь
Всем доброго времени суток!
tp 2.1.5
При попытке прикрепить торрент к посту выдаёт: "Не указан режим сообщения".
В ветке разрешено прикреплять. Права на папки 777.
В чём может быть проблема?
Приму во внимание любые догадки!
tp 2.1.5
При попытке прикрепить торрент к посту выдаёт: "Не указан режим сообщения".
В ветке разрешено прикреплять. Права на папки 777.
В чём может быть проблема?
Приму во внимание любые догадки!
server {
server_name сайт;
root /var/www/сайт.ru;
location / {
index index.php;
}
location ~ \.php$ {
root /var/www/сайт;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_read_timeout 180;
fastcgi_intercept_errors on;
fastcgi_param REQUEST_BODY_FILE $request_body_file;
fastcgi_param SCRIPT_FILENAME /var/www/сайт$fastcgi_script_name;
fastcgi_param PATH_TRANSLATED /var/www/сайт$fastcgi_script_name;
}
# cache static files
location ~* \.(jpg|jpeg|gif|png|css|js|ico)$ {
root /var/www/сайт;
access_log off;
expires 30d;
add_header Cache-Control public;
}
# sitemap rewrite
rewrite ^/sitemap.xml$ /internal_data/sitemap/sitemap.xml;
# deny access to admin folder
location ~ \/admin|backup\/ {
deny all;
#allow YOUR_IP;
}
# deny access to system folder
location ~ \/(install|internal_data|library)\/ {
deny all;
}
# deny access to git folder
location ~ /\.git {
deny all;
}
# deny access to .htaccess, if apache's document root concurs with nginx's one
location ~ /\.ht {
deny all;
}
# deny access to critical files
location ~ \.(.*sql|tpl|db|inc|log|md)$ {
deny all;
}
}
server_name сайт;
root /var/www/сайт.ru;
location / {
index index.php;
}
location ~ \.php$ {
root /var/www/сайт;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_read_timeout 180;
fastcgi_intercept_errors on;
fastcgi_param REQUEST_BODY_FILE $request_body_file;
fastcgi_param SCRIPT_FILENAME /var/www/сайт$fastcgi_script_name;
fastcgi_param PATH_TRANSLATED /var/www/сайт$fastcgi_script_name;
}
# cache static files
location ~* \.(jpg|jpeg|gif|png|css|js|ico)$ {
root /var/www/сайт;
access_log off;
expires 30d;
add_header Cache-Control public;
}
# sitemap rewrite
rewrite ^/sitemap.xml$ /internal_data/sitemap/sitemap.xml;
# deny access to admin folder
location ~ \/admin|backup\/ {
deny all;
#allow YOUR_IP;
}
# deny access to system folder
location ~ \/(install|internal_data|library)\/ {
deny all;
}
# deny access to git folder
location ~ /\.git {
deny all;
}
# deny access to .htaccess, if apache's document root concurs with nginx's one
location ~ /\.ht {
deny all;
}
# deny access to critical files
location ~ \.(.*sql|tpl|db|inc|log|md)$ {
deny all;
}
}
Последнее редактирование: