mirror of
https://github.com/StepanovPlaton/HomeServerServices.git
synced 2026-04-03 20:30:44 +04:00
Add init proxy conf
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -5,13 +5,12 @@ syncthing/config/*
|
||||
|
||||
transmission/config/*
|
||||
|
||||
proxy/nginx/init/default.conf
|
||||
proxy/nginx/conf.d/default.conf
|
||||
proxy/ssl/conf/*
|
||||
proxy/ssl/www/*
|
||||
|
||||
gitea/data/*
|
||||
gitea/db/*
|
||||
gitea/db
|
||||
gitea/config/*
|
||||
|
||||
matrix/data/*
|
||||
|
||||
13
proxy/nginx/init/default.conf
Normal file
13
proxy/nginx/init/default.conf
Normal file
@@ -0,0 +1,13 @@
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location /.well-known/acme-challenge/ {
|
||||
root /var/www/certbot;
|
||||
}
|
||||
|
||||
location / {
|
||||
charset utf-8;
|
||||
default_type text/plain;
|
||||
return 200 "Hello world!";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user