testfile 223 B

12345678910111213
  1. server {
  2. listen 80;
  3. listen 443 ssl;
  4. server_name $domain;
  5. location /.well-known {
  6. root /var/www/ssl-proof/;
  7. }
  8. location /back/ {
  9. add_header Content-Type text/json;
  10. proxy_pass http://$IP:$PORT/;
  11. }
  12. }