Переименовал nginx => omnireader

This commit is contained in:
Book Pauk
2019-02-12 18:28:37 +07:00
parent ce32b62ec6
commit 7b944835de
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
server {
listen 80;
server_name omnireader.ru;
client_max_body_size 50m;
gzip on;
gzip_min_length 1024;
gzip_proxied expired no-cache no-store private auth;
gzip_types *;
location /api {
proxy_pass http://localhost:44081;
}
location /tmp {
root /home/liberama/public;
add_header Content-Type text/xml;
add_header Content-Encoding gzip;
}
location / {
root /home/liberama/public;
}
}