Açıklama Yok

xword.nginx 539B

1234567891011121314151617181920212223
  1. server {
  2. listen 80;
  3. server_name {{ settings.server_name }};
  4. include /etc/nginx/include/certbot.conf;
  5. client_max_body_size 8M;
  6. location /static/ {
  7. alias /data/clients/andrew/xword/static/;
  8. expires 30d;
  9. autoindex off;
  10. }
  11. location / {
  12. # The trailing '/' is important as it causes nginx to send the
  13. # cleaned URI through to the destination service (double slashes
  14. # removed, etc.).
  15. proxy_pass http://127.0.0.1:{{ settings.listen_port }}/;
  16. include /etc/nginx/include/proxy.conf;
  17. }
  18. }