Comments on The Perfect Server - Ubuntu 11.10 With Nginx [ISPConfig 3]

The Perfect Server - Ubuntu 11.10 With Nginx [ISPConfig 3] This tutorial shows how to prepare an Ubuntu 11.10 (Oneiric Ocelot) server with nginx for the installation of ISPConfig 3, and how to install ISPConfig 3. Since version 3.0.4, ISPConfig comes with full support for the nginx web server in addition to Apache, and this tutorial covers the setup of a server that uses nginx instead of Apache. ISPConfig 3 is a webhosting control panel that allows you to configure the following services through a web browser: nginx and Apache web server, Postfix mail server, MySQL, BIND or MyDNS nameserver, PureFTPd, SpamAssassin, ClamAV, and many more.

3 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Anonymous

Please note that you cannot use this tutorial for Debian Squeeze because Squeeze comes with an older nginx version (0.7.67.) and does not have a PHP-FPM package!

you mean lenny? what about if using custom/recompile (for example dotdeb) repository? i see there's no problem in my dev server (at least, until now).

By:

+1 With this /etc/apt/sources.list.d/dotdeb.list file, I running ispconfig in squeeze following this how to.

/etc/apt/sources.list.d/dotdeb.list

Another tip: this is my nginx default file. I catch all lost URL, deactivated domains, and hostname direct to panel in :80 and :443 ports

#/etc/nginx/sites-available/default

# -----------------------------------------------------

# everything goes to panel

# -----------------------------------------------------


server {

        listen 80 default_server;

        server_name _;


        access_log /var/log/nginx/ispconfig.log;


## Default location

        location / {

                proxy_pass https://127.0.0.1:8080/;

        }

    index index.html index.php;

    server_name_in_redirect off;

}

server {

        listen 443 ssl;

        server_name _;


        ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;

        ssl_certificate_key /usr/local/ispconfig/interface/ssl/ispserver.key;


        access_log /var/log/nginx/ispconfig.log;


## Default location

        location / {

                proxy_pass https://127.0.0.1:8080/;

        }

 

By: Anonymous

ip6_tables: (C) 2000-2006 Netfilter Core Team                                                       
IPv6 over IPv4 tunneling driver                                                                     
NET: Registered protocol family 17                                                                  
NET: Registered protocol family 15                                                                  
Bridge firewalling registered                                                                       
Ebtables v2.0 registered                                                                            
8021q: 802.1Q VLAN Support v1.8                                                                     
sctp: Hash tables configured (established 16384 bind 16384)                                         
Registering the dns_resolver key type                                                               
Using IPI No-Shortcut mode                                                                          
registered taskstats version 1                                                                      
blkfront: xvda: barrier: enabled                                                                    
 xvda: unknown partition table                                                                      
blkfront: xvdb: barrier: enabled                                                                    
 xvdb: unknown partition table                                                                      
XENBUS: Device with no driver: device/console/0                                                     
md: Waiting for all devices to be available before autodetect                                       
md: If you don't use raid, use raid=noautodetect                                                    
md: Autodetecting RAID arrays.                                                                      
md: Scanned 0 and added 0 devices.                                                                  
md: autorun ...                                                                                     
md: ... autorun DONE.                                                                               
EXT3-fs: barriers not enabled                                                                       
kjournald starting.  Commit interval 5 seconds                                                      
EXT3-fs (xvda): mounted filesystem with writeback data mode                                         
VFS: Mounted root (ext3 filesystem) readonly on device 202:0.                                       
devtmpfs: mounted                                                                                   
Freeing unused kernel memory: 388k freed                                                            
Write protecting the kernel text: 6008k                                                             
Write protecting the kernel read-only data: 1436k                                                   
NX-protecting the kernel data: 3208k

after: SYSTEM HALT

please help me..