omnireader 336 B

12345678910111213141516171819
  1. server {
  2. listen 80;
  3. server_name omnireader.ru;
  4. client_max_body_size 50m;
  5. location /api {
  6. proxy_pass http://localhost:44081;
  7. }
  8. location /tmp {
  9. root /var/www/omnireader/public;
  10. add_header Content-Type text/xml;
  11. add_header Content-Encoding gzip;
  12. }
  13. location / {
  14. root /var/www/omnireader/public;
  15. }
  16. }