I\'m new to NGINX and I\'m trying to setup minimal working thing. So I trying to run aiohttp mini-app with nginx and supervisor (by this example). But I can\'t configure Ngi
I am assuming that you have http in your /etc/nginx/nginx.conf file which then tells nginx to include sites-enabled/*;
http
include sites-enabled/*;
So then you have
http http server
As the http directive should only happen once just remove the http directive from your sites-enabled config file(s)