Ich bin mit Ubuntu Hardy 8.04 und nginx 0.7.65, und wenn ich versuche, meine nginx Server starten:nginx Fehler: (99: angeforderte Adresse kann nicht zuordnen)
$ sudo /etc/init.d/nginx start
ich die folgende Fehlermeldung erhalten:
Starting nginx: [emerg]: bind() to IP failed (99: Cannot assign requested address)
wo "IP" ist ein Platzhalter für meine IP-Adresse. Weiß jemand, warum dieser Fehler passiert? Dies läuft auf EC2.
Meine nginx.conf Datei sieht wie folgt aus:
user www-data www-data;
worker_processes 4;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /usr/local/nginx/logs/access.log;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 3;
gzip on;
gzip_comp_level 2;
gzip_proxied any;
gzip_types text/plain text/css application/x-javascript text/xml application/xml
application/xml+rss text/javascript;
include /usr/local/nginx/sites-enabled/*;
}
und meine /usr/local/nginx/sites-enabled/example.com wie folgt aussieht:
server {
listen IP:80;
server_name example.com;
rewrite ^/(.*) https://example.com/$1 permanent;
}
server {
listen IP:443 default ssl;
ssl on;
ssl_certificate /etc/ssl/certs/myssl.crt;
ssl_certificate_key /etc/ssl/private/myssl.key;
ssl_protocols SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP;
server_name example.com;
access_log /home/example/example.com/log/access.log;
error_log /home/example/example.com/log/error.log;
}
hmm leider gibt es nichts zu hören Port 80. –
hmm .. irgendein Fast-CGI läuft vielleicht .. –
Nö ... nicht schnell-cgi sehen ... –