This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
homeserver-ansible/templates/nginx_bare.conf.j2
2022-02-27 16:05:34 -05:00

18 lines
299 B
Django/Jinja

# Do not use this configuration once setup is finished.
# It is only intended for getting a Let's Encrypt cert, allowing the main config to work.
events {
worker_connections 1024;
}
http {
server {
listen 80;
server_name {{ domain }};
root {{ webroot }}/;
location / {
}
}
}