Browse Source

Merge branch 'master' of github.com:movim/movim

pull/808/head
Timothée Jaussoin 7 years ago
parent
commit
0adeeb9f7f
  1. 22
      etc/nginx/conf.d/movim.conf

22
etc/nginx/conf.d/movim.conf

@ -0,0 +1,22 @@
location /movim/ {
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
}
location /movim/ws/ {
proxy_pass http://localhost:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
include proxy_params;
}
location /movim/log/ {
deny all;
}
location /movim/cache/ {
deny all;
}
}
Loading…
Cancel
Save