Uruchamianie Ubuntu 13.10 w VirtualBox.
Umieściłem moją stronę w tym folderze:
I utworzył folder dziennika na /srv/www/streamsy.com/logs/.
Zrobiłem następujące kroki:
sudo apt-get install nginx
sudo chown -R www-data:www-data /srv/www/streamsy.com/public_html
sudo chmod 755 /srv/www
Pliki konfiguracyjne wyglądają następująco:
/etc/nginx/sites-available/streamsy.com:
server {
listen 80;
server_name streamsy.com;
access_log /srv/www/streamsy.com/logs/access.log;
error_log /srv/www/streamsy.com/logs/error.log;
location / {
root /srv/www/streamsy.com/public_html/;
index index.html;
}
}
/etc/nginx/nginx.conf:
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/streamsy.com;
}
Włączyłem plik streamsy.com za pomocą:
sudo ln -s /etc/nginx/sites-available/streamsy.com /etc/nginx/sites-enabled/streamsy.com
Edytowane / etc / hosts, ale z prawdziwym ip zamiast x:
127.0.0.1 localhost
127.0.1.1 lalle-VM
217.72.x.x streamsy.com
Ponowne uruchomienie:
sudo service nginx restart
* Restarting nginx nginx [ OK ]
Brak błędów w /var/log/nginx/error.log
Czy ktoś ma jakieś pomysły, co robię źle? Chcę mieć dostęp do mojego serwera nginx zdalnie na moim publicznym adresie IP. Dzięki.