Here's a very basic nginx configuration for a website running concrete5:
# Define the server configuration
server {
# Define the ports the server is listening to
# In case this is the default website, you can add default_server before the semicolon
listen 80;
listen [::]:80 ipv6only=on;