Here it is:
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
here is the first part of my server block in default
i added a new location there /biogas but that is doing nothing...
clueless
server {
listen 80 default;
server_name localhost;
server_name "";
access_log /var/log/nginx/localhost.access.log;
location / {
root /var/www/nginx-default/;
index index.html index.htm;
}
location /doc {
root /usr/share;
autoindex on;
allow 127.0.0.1;
deny all;
}
location /images {
root /usr/share;
autoindex on;
}
location /biogas {
root /srv/www/biogas/public_html;
autoindex on;
}