mirror of
https://git.swurl.xyz/swirl/link.git
synced 2023-11-08 10:44:52 +02:00
11 lines
162 B
Plaintext
11 lines
162 B
Plaintext
server {
|
|
rewrite_log on;
|
|
server_name your.doma.in;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8080;
|
|
}
|
|
|
|
listen 80 ; # use certbot to enable https
|
|
}
|