运行Magento 1.6.0.0在Nginx(LEMP)在Debian Squeeze / Ubuntu 11.04

运行Magento 1.6.0.0在Debian Squeeze / Ubuntu 11.04上的Nginx(LEMP)上

本教程将介绍如何在安装了nginx的Debian Squeeze或Ubuntu 11.04系统上安装和运行Magento 1.6.0.0 ,而不是Apache(LEMP = L inux + nginx(发音为“ e ngine x”)+ M ySQL + P HP) 。 Magento是一个开放源码,功能丰富的电子商务平台; 我将使用根据开放源代码认证许可证(OSL v3.0)许可的Magento社区版本。 nginx是一个HTTP服务器,比Apache使用的资源少得多,并且提供了更快的网页,特别是静态文件。

我不会保证这将为您工作!

1初步说明

我想将Magento安装在名为www.example.com / example.com的vhost文件根目录/var/www/www.example.com/web中

您应该有一个工作的LEMP安装,如这些教程所示:

Ubuntu用户注意事项:

因为我们必须使用root权限运行本教程的所有步骤,所以我们可以使用字符串sudo在本教程中添加所有命令,也可以通过键入来成为root

sudo su

2安装APC

APC是一个免费开放的PHP操作码cacher,用于缓存和优化PHP中间代码。 它类似于其他PHP操作码cacher,如eAccelerator和XCache。 强烈建议您安装其中一个以加快您的PHP页面。

APC可以安装如下:

apt-get install php-apc

如果您使用PHP-FPM作为FastCGI守护进程(如在Ubuntu 11.04安装使用PHP5(和PHP-FPM)和MySQL支持)安装Nginx ,请重新启动它,如下所示:

/etc/init.d/php5-fpm restart

如果您使用lighttpd的spawn-fcgi程序作为FastCGI守护进程(例如在使用Debian Squeeze安装Nginx with PHP5和MySQL支持 )中,我们必须终止当前的spawn-fcgi进程(在端口9000上运行),并创建一个新的。 跑

netstat -tap

找出当前的spawn-fcgi进程的PID:

root@server1:~# netstat -tap
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 *:sunrpc                *:*                     LISTEN      734/portmap
tcp        0      0 *:www                   *:*                     LISTEN      2987/nginx
tcp        0      0 *:ssh                   *:*                     LISTEN      1531/sshd
tcp        0      0 *:57174                 *:*                     LISTEN      748/rpc.statd
tcp        0      0 localhost.localdom:smtp *:*                     LISTEN      1507/exim4
tcp        0      0 localhost.localdom:9000 *:*                     LISTEN      1542/php5-cgi
tcp        0      0 localhost.localdo:mysql *:*                     LISTEN      1168/mysqld
tcp        0     52 server1.example.com:ssh 192.168.0.198:2462      ESTABLISHED 1557/0
tcp6       0      0 [::]:www                [::]:*                  LISTEN      2987/nginx
tcp6       0      0 [::]:ssh                [::]:*                  LISTEN      1531/sshd
tcp6       0      0 ip6-localhost:smtp      [::]:*                  LISTEN      1507/exim4
root@server1:~#

在上面的输出中,PID是1542 ,所以我们可以杀死当前的进程如下:

kill -9 1542

之后我们创建一个新的spawn-fcgi进程:

/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -g www-data -f /usr/bin/php5-cgi -P /var/run/fastcgi-php.pid

3安装Magento

我的www.example.com网站的文档根目录是/var/www/www.example.com/web - 如果不存在,创建如下:

mkdir -p /var/www/www.example.com/web

您现在可以从http://www.magentocommerce.com/download/get-started下载Magento 1.6.0.0到您的客户端PC,解压缩并将magento文件夹的内容上传到文档根目录( / var / www / www.example.com/web ),或者在命令行中进行如下操作:

cd /tmp
wget http://www.magentocommerce.com/downloads/assets/1.6.0.0/magento-1.6.0.0.tar.gz
tar xvfz magento-1.6.0.0.tar.gz
mv magento/* magento/.htaccess /var/www/www.example.com/web/

建议使用作为用户www-data和组www-data运行的nginx守护进程将文档根和Magento文件写入:

chown -R www-data:www-data /var/www/www.example.com/web

如果您在/ tmp目录中下载并解压缩了Magento,可以按如下方式进行清理:

cd /tmp
rm -rf magento/ magento-1.6.0.0.tar.gz

如果还没有为Magento创建一个MySQL数据库(包括一个MySQL Magento用户),可以按如下方式进行操作(在本示例中我命名了数据库magento ,用户名为magento_admin ,密码为magento_admin_password ):

mysql -u root -p
CREATE DATABASE magento;
GRANT ALL PRIVILEGES ON magento.* TO 'magento_admin'@'localhost' IDENTIFIED BY 'magento_admin_password';
GRANT ALL PRIVILEGES ON magento.* TO 'magento_admin'@'localhost.localdomain' IDENTIFIED BY 'magento_admin_password';
FLUSH PRIVILEGES;
quit;

因为您可以在http和https下运行您的Magento商店网站(如果您想提供https,那么完全取决于您,但如果您的客户提交敏感数据,如信用卡号码等),我们需要添加以下内容部分到/etc/nginx/nginx.conf中的http {}部分(在两个包含行之前),它确定访问者是否使用http或https,并设置$ fastcgi_https变量(我们将在www.example.com中使用) vhost)相应地:

vi /etc/nginx/nginx.conf
[...]
http {
[...]
        ## Detect when HTTPS is used
        map $scheme $fastcgi_https {
          default off;
          https on;
        }

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}
[...]

接下来,我们在/ etc / nginx / sites-available /目录中为www.example.com vhost创建一个nginx vhost配置,如下所示:

vi /etc/nginx/sites-available/www.example.com.vhost
server {
    listen 80;

    ## SSL directives might go here
    ## see https://www.youcl.com/how_to_set_up_ssl_vhosts_under_nginx_plus_sni_support_ubuntu_11.04_debian_squeeze
    ## if you want to enable SSL for this vhost

    server_name www.example.com example.com;
    root /var/www/www.example.com/web;

    ## rewrites example.com to www.example.com
    if ($http_host != "www.example.com") {
        rewrite ^ $scheme://www.example.com$request_uri permanent;
    }

    location / {
        index index.html index.php; ## Allow a static html file to be shown first
        try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler
        expires 30d; ## Assume all files are cachable
    }

    ## These locations would be hidden by .htaccess normally
    location /app/                { deny all; }
    location /includes/           { deny all; }
    location /lib/                { deny all; }
    location /media/downloadable/ { deny all; }
    location /pkginfo/            { deny all; }
    location /report/config.xml   { deny all; }
    location /var/                { deny all; }

    location /var/export/ { ## Allow admins only to view export folder
        auth_basic           "Restricted"; ## Message shown in login window
        auth_basic_user_file /var/www/www.example.com/.htpasswd; ## See /etc/nginx/htpassword
        autoindex            on;
    }

    ## Disable .htaccess and other hidden files
    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }

    location @handler { ## Magento uses a common front handler
        rewrite / /index.php;
    }

    location ~ \.php/ { ## Forward paths like /js/index.php/x.js to relevant handler
        rewrite ^(.*\.php)/ $1 last;
    }

    location ~ \.php$ { ## Execute PHP scripts
        if (!-e $request_filename) { rewrite / /index.php last; } ## Catch 404s that try_files miss

        expires        off; ## Do not cache dynamic content
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  HTTPS $fastcgi_https;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  MAGE_RUN_CODE default; ## Store code is defined in administration > Configuration > Manage Stores
        fastcgi_param  MAGE_RUN_TYPE store;
        include        fastcgi_params; ## See /etc/nginx/fastcgi_params
    }
}

如果要为vhost启用https,请参阅上述配置中的注释。 本教程将介绍该过程: 如何在Nginx + SNI支持下设置SSL Vhosts(Ubuntu 11.04 / Debian Squeeze)

如您所见,我们希望对/var/www/www.example.com/web/var/export目录进行密码保护。 密码保护可以设置如下(有关详细信息,请参阅使用Nginx基本HTTP身份验证 ):

apt-get install apache2-utils
htpasswd -c /var/www/www.example.com/.htpasswd admin1
htpasswd /var/www/www.example.com/.htpasswd admin2

(为您所需的管理员用户创建密码。)

要启用该vhost,我们从/ etc / nginx / sites-enabled /目录创建一个符号链接:

cd /etc/nginx/sites-enabled/
ln -s /etc/nginx/sites-available/www.example.com.vhost www.example.com.vhost

重新加载nginx以使更改生效:

/etc/init.d/nginx reload
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏