2022-09-15 14:23:34 -05:00
|
|
|
server {
|
2023-10-08 12:28:14 -05:00
|
|
|
listen 443 ssl;
|
2022-09-15 14:23:34 -05:00
|
|
|
server_name cyberbrain.aninix.net;
|
|
|
|
|
2023-12-19 16:20:58 -06:00
|
|
|
location ^~ /admin {
|
|
|
|
deny all;
|
2023-10-08 12:28:14 -05:00
|
|
|
}
|
|
|
|
|
2023-12-19 16:20:58 -06:00
|
|
|
location / {
|
|
|
|
proxy_pass http://10.0.1.8:8334;
|
2022-09-15 14:23:34 -05:00
|
|
|
}
|
2022-12-18 22:21:39 -06:00
|
|
|
|
2023-11-09 13:03:06 -06:00
|
|
|
include conf/letsencrypt.conf;
|
2022-12-18 22:21:39 -06:00
|
|
|
|
2022-09-15 14:23:34 -05:00
|
|
|
}
|