14 lines
280 B
Plaintext
14 lines
280 B
Plaintext
# proxy for unsecured traffic for letsencrypt verification
|
|
server {
|
|
listen 80 default_server;
|
|
server_name _
|
|
|
|
client_max_body_size 200m;
|
|
|
|
location / {
|
|
proxy_set_header Connection $http_connection;
|
|
proxy_pass http://dkhost.xai-corp.net:83;
|
|
}
|
|
|
|
}
|