View RSS Feed

บล็อกโพสต์ล่าสุด

  1. Nginx and Perl-FastCGI on Debian 5 (Lenny)

    โดย เมื่อ 03-06-2010 เวลา 15:43:12
    Install Required Packages

    Issue the following commands to update your system and install the nginx web server and compiler tools (Perl should already be installed):

    Code:
    apt-get update
    apt-get upgrade
    apt-get install nginx build-essential psmisc wget
    /etc/init.d/nginx start
    Various additional dependency packages will be installed along with the ones we requested. Once the installation process finishes, you may wish to make sure nginx is running by browsing to your Linode's IP address (found on the "Network" tab in the Linode Manager). You should get the default "Welcome to nginx!" page.
    Configure Your Site

    In this guide, we'll be using the domain "bambookites.com" as our example site. You should substitute your own domain name in the configuration steps that follow. First, we'll need to create ...
    ป้ายกำกับ: Nginx and Perl-FastCGI, Nginx on Debian 5 เพิ่ม / แก้ไข ป้ายกำกับ
    หัวข้อ
    How To , Linux , Software

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90