Files
TermuxSmsGateway/mqtt-client/nginx/termux-notify.conf
T
2021-04-15 15:12:43 +02:00

15 lines
254 B
Plaintext

server {
listen 80;
server_name _;
set $root_path "/usr/share/nginx/html";
root $root_path;
location / {
root html;
index index.html index.htm;
error_page 405 = $uri;
}
}