如何将 Nginx 配置转换为 Modoboa 的 Apache2

如何将 Nginx 配置转换为 Modoboa 的 Apache2

我正在尝试设置 Modoboa,但无法让新的管理页面正常工作,因为它需要 Nginx 中的这个配置,但我正在使用 Apache2,有人能帮我配置一下吗

https://modoboa.readthedocs.io/en/latest/upgrade.html?highlight=new-admin#new-admin-interface

location ^~ /new-admin {
    alias  /srv/modoboa/instance/frontend/;
    index  index.html;

    expires -1;
    add_header Pragma "no-cache";
    add_header Cache-Control "no-store, no-cache, must-revalidate, post-check=0, pre-check=0";

    try_files $uri $uri/ /index.html = 404;
}

答案1

虽然有点晚了,但是还是有效。

Alias /new-admin /home/modoboa/instance/frontend/
<Directory /home/modoboa/instance/frontend>
    Order deny,allow
    Allow from all
</Directory>

相关内容