为多个用户设置一个网络服务器,并使 PHP 脚本在他们的帐户下运行(具有他们的权限)

发布于 2024-12-16 00:09:00 字数 470 浏览 1 评论 0原文

我正在为多个用户(具有“开发人员”配置文件)设置 Apache 2.2 Web 服务器。 他们需要执行 PHP 脚本/应用程序(自制的和购买的)并运行

我尝试使用 *mod_userdir* 但问题是 Apache(因此脚本)在“www-data”下运行(我正在使用 GNU/Debian操作系统)。

所以我查看了 suPHP,但它不支持 *php_admin_value* Apache 指令。

我还看到提到了 apache2-mpm-itk,但它使用虚拟主机,而虚拟主机本身需要 DNS。 我想如果我要在通过委派管理子域的网络服务器上安装 DNS 服务器(例如,我的网络服务器的 FQDN 是“testsrv.mycompany.tld”,用户的虚拟主机的FQDN 将为“user1.testsrv.mycompany.tld”、“user2.testsrv.mycompany.tld”)。但这可能有点“太多”不是吗?

I'm setting up an Apache 2.2 webserver for multiple users (having the "developers" profile).
They need to execute PHP scripts/applications (both home-made and acquired) and run

I tried using *mod_userdir* but the problem is that Apache (thus the scripts) runs under "www-data" (I'm using GNU/Debian OS).

So I looked at suPHP but it doesn't support *php_admin_value* Apache directives.

I also saw apache2-mpm-itk mentioned but it uses virtual hosts, which itself requires DNS.
I think I could see some workaround to that if I was to install a DNS server on the webserver managing a subdomain via delegation (eg. my webserver's FQDN is "testsrv.mycompany.tld" and users's virtual host's FQDN would be "user1.testsrv.mycompany.tld", "user2.testsrv.mycompany.tld"). But it might a bit "too much" no?

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

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

发布评论

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

评论(1

梦断已成空 2024-12-23 00:09:00

您可以将虚拟主机与 mod_auth_basic 一起使用,这样 user1 将有一个受密码保护的网站,网址为 www.user1.example.com

如果通过“php_admin_value”您引用的是 .htaccess 文件,那么是的,suPHP 不支持它们,但我相信有一种解决方法。

最后,我在本地设置我的服务器(用于测试),因此我刚刚更新了我的 /etc/hosts/ 文件。这可能是您开始的好地方。

You could use virtual hosts along with mod_auth_basic so user1 would have a password protected site at www.user1.example.com.

If by 'php_admin_value' you are refering to the .htaccess files, then yes they are not supported by suPHP but I believe there is a way around that.

Finally, I am setting up my server locally (for testing) so I just updated my /etc/hosts/ file. That might be a good place for you to start.

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