Submitted by woooji on Sat, 05/19/2012 - 09:20
Nginx Webserver
Nginx version 1.2.0
HTTP/1.0 500 Perl execution failed Server: MiniServ/1.585 Date: Fri, 18 May 2012 12:38:46 GMT Content-type: text/html; Charset=iso-8859-1 Connection: close
Error - Perl execution failed
Modification of non-creatable array value attempted, subscript -1 at virtualmin-nginx-lib.pl line 107.
Status:
Closed (fixed)
Comments
Submitted by JamieCameron on Sat, 05/19/2012 - 11:52 Comment #1
Could you post your Nginx config file here? There are some layouts that are valid according to Nginx, but cannot yet be parsed by Virtualmin..
Submitted by woooji on Sun, 05/20/2012 - 21:17 Comment #2
Hi jam,
The Nginx config is follow"
user www;
worker_processes 4;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /home/www;
index index.html index.htm index.php;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /home/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/www/$fastcgi_script_name;
include /usr/local/nginx/conf/fastcgi_params;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
{
expires 30d;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
Submitted by JamieCameron on Mon, 05/21/2012 - 00:18 Comment #3
I think I see the issue .. you need to fix the line :
location ~ .*.(gif|jpg|jpeg|png|bmp|swf|js|css)$
{
so that the { is on the same line, like :
location ~ .*.(gif|jpg|jpeg|png|bmp|swf|js|css)$ {
Submitted by woooji on Mon, 05/21/2012 - 01:24 Comment #4
so thanks jam, yes, that is ok, thanks again!
Submitted by JamieCameron on Mon, 05/21/2012 - 12:38 Comment #5
Great! Until I update the Nginx config parser to handle this case, this is the best work-around.