10 lines
205 B
Text
10 lines
205 B
Text
server {
|
|
listen 80;
|
|
server_name nebulosus.nl;
|
|
|
|
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
|
|
|
|
location / {
|
|
proxy_pass http://site;
|
|
}
|
|
}
|