Thân gửi các Mem,
Em đang làm config cho server làm 1 web server, hướng của em đang dùng là Apahce 2 có NGINX làm reserve proxy chạy qua cổng 8080 / 8081. kèm theo đó là fastcgi chạy qua 9000.. dười đây là cấu hình của site đó... vì là tham khảo tài liệu chắp vá để thử nghiệm... sách đọc chưa xong nên có gì các Mem thật sự tặc lưỡi bỏ qua và chỉ bảo:
Code:
server {
listen 80;
add_header Cache-Control public;
listen 127.0.0.1:8080 rcvbuf=64k backlog=128;
access_log /var/www/log/nvit.com.vn-nginx.access.log;
error_log /var/www/log/nvit.com.vn-nginx_error.log debug;
server_name nvit.com.vn www.nvit.com.vn;
large_client_header_buffers 4 8k;
## Only allow GET and HEAD request methods
if ($request_method !~ ^(GET|HEAD)$ ) {
return 444;
}
## Deny illegal Host headers
if ($host !~* ^(nvit.com.vn|www.nvit.com.vn)$ ) {
return 444;
}
## Only allow GET and HEAD request methods
if ($request_method !~ ^(GET|HEAD)$ ) {
return 444;
}
## Deny certain User-Agents (case insensitive)
## The ~* makes it case insensitive as opposed to just a ~
if ($http_user_agent ~* (Baiduspider|Jullo) ) {
return 444;
}
## Redirect from www to non-www
if ($host = 'www.nvit.com.vn' ) {
rewrite ^/(.*)$ http://nvit.com.vn/$1 permanent;
}
## Stop Image and Document Hijacking
location ~* (\.jpg|\.png|\.css)$ {
if ($http_referer !~ ^(http://nvit.com.vn) ) {
return 444;
}
}
location / {
proxy_pass http://127.0.0.1:8080;
try_files $uri $uri/ /index.php?q=$request_uri;
set $memcached_key $uri;
memcached_pass 127.0.0.1:11211;
index index.php index.html index.htm;
root /home/nvit/public_html/;
}
location ~ \.php$ {
root /home/nvit/public_html/;
fastcgi_pass unix:/var/lib/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
hiện tại em có copy 1 Quickstart của Joomla lên server tại website đó... để cài thử nghiệp nhưng config và nghiên cứu hoài ko qua được nút NEXT ... xin hỏi cái cấu hình của em phải thêm gì, hoặc Engine X của em phải bổ sung gì để có thể cài đặt được Joomla trên...
Rất mong chỉ dẫn...