Mac 上的 SimpleSAMLphp

发布于 2024-11-07 04:33:32 字数 187 浏览 3 评论 0原文

使用Mac OS X 10.6.7,预装Apache2和PHP。

我正在尝试安装 SimpleSAMLphp 进行身份验证。该文档描述了如何使用 VirtualHost 安装 simpleSAMLphp,但其他方法的描述还很不够。

有人可以描述如何在不使用 VirtualHost 的情况下安装 SimpleSAMLphp 吗?

Using Mac OS X 10.6.7, preinstalled Apache2 and PHP.

I'm trying to install SimpleSAMLphp for authentication. The documentation describes how to install simpleSAMLphp using a VirtualHost, but other ways are described very insufficiently.

Can someone describe how to install SimpleSAMLphp without using a VirtualHost?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小清晰的声音 2024-11-14 04:33:32

您需要的配置行是这样的:

别名 /simplesaml "/Users/andreas/simplesamlphp/www/"

在您的 Apache 配置中,如果您不使用虚拟主机,则将其放入通用配置文件中。将其放在靠近 DocumentRoot 的位置。

如果您不想触及 apache 配置文件,您可以使用符号链接来模拟相同的内容。

cd

ln -s "/Users/andreas/simplesamlphp/www/" simplesaml

我建议您加入 SimpleSAMLphp 邮件列表 询问有关 simpleSAMLphp 的问题。

The configuration line you need is this:

Alias /simplesaml "/Users/andreas/simplesamlphp/www/"

in your Apache configuration, and if you are not using vhosts, you put it in the general config file. Put it close to DocumentRoot.

If you do not want to touch apache configuration files, you could simulate the same with a symlink.

cd <webroot>

ln -s "/Users/andreas/simplesamlphp/www/" simplesaml

I'd reccomend that you join the SimpleSAMLphp mailinglist to ask questions about simpleSAMLphp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文