1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ofbiz_ynh.git synced 2024-09-03 19:46:33 +02:00
ofbiz_ynh/conf/nginx.conf
2024-03-22 17:57:00 +01:00

20 lines
524 B
Nginx Configuration File

location @ofbiz {
proxy_pass https://127.0.0.1:__PORT__;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded_For $proxy_add_x_forwarded_for;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
root __INSTALL_DIR__/framework/images/webapp/images;
try_files $uri $uri/ @ofbiz;
expires 3d;
}
location / {
root __INSTALL_DIR__/framework/images/webapp/images;
try_files $uri $uri/ @ofbiz;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}