我在 Raspbian Jessie 上使用 Systemd 设置了 node.js 应用程序形式的服务,它使用自己的用户帐户。但是,我发现该服务没有正确运行,因为它没有必要的权限。我安装的其中一个节点模块需要 root 访问权限。如果我使用 sudo 手动运行应用程序,一切正常。
有没有办法告诉 systemd 用 sudo 运行服务?
因此,我在一台服务器上有两个 Web 应用程序。我有一个在使用常规域时提供的主域,但我希望一个子域指向另一个应用程序。
我已经按照我在谷歌搜索中找到的方式设置了虚拟主机,但它仍然不起作用。子域只是提供主应用程序。这是我的配置文件的内容。
<VirtualHost *:80>
ServerName www.luketimoth.me
DocumentRoot /var/www/luketimothy/public
<Directory /var/www/luketimothy/public>
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName www.luketimoth.me
DocumentRoot /var/www/shattered-plays/public
ServerAlias shattered.luketimoth.me
<Directory /var/www/shattered-plays/public>
PassengerEnabled on
</Directory>
</VirtualHost>
据我所知(以我对 Apache 的初学者/基本知识),这应该符合我的期望......但事实并非如此。我究竟做错了什么?
的输出httpd -S
httpd: apr_sockaddr_info_get() failed for LMTServe
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Sat May 17 16:42:02 2014] [warn] _default_ VirtualHost overlap on port 80, the first has precedence
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80 www.luketimoth.me (/etc/httpd/conf/httpd.conf:1017)
*:80 www.luketimoth.me (/etc/httpd/conf/httpd.conf:1031)
Syntax OK
编辑:
我已更改虚拟主机以使用所需的子域作为 ServerName,但我仍然看到同样的问题。
<VirtualHost *:80>
ServerName www.luketimoth.me
DocumentRoot /var/www/luketimothy/public
<Directory /var/www/luketimothy/public>
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName shattered.luketimoth.me
DocumentRoot /var/www/shattered-plays/public
<Directory /var/www/shattered-plays/public>
PassengerEnabled on
</Directory>
</VirtualHost>
httpd: apr_sockaddr_info_get() failed for LMTServe
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Sun May 18 10:15:24 2014] [warn] _default_ VirtualHost overlap on port 80, the first has precedence
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80 www.luketimoth.me (/etc/httpd/conf/httpd.conf:1017)
*:80 shattered.luketimoth.me (/etc/httpd/conf/httpd.conf:1031)
Syntax OK
这个问题可能有更好的解决方案,我也欢迎这些。
目前,我的网站上有一个电子邮件表单,人们可以通过 PHP 脚本直接向我的 gmail 帐户发送电子邮件。但是,当我收到这些电子邮件时,有时 gmail 会将其标记为可能是垃圾邮件或网络钓鱼;大概是因为电子邮件不是来自已知的服务器。
我只是想知道是否有办法告诉 gmail,如果它来自我的服务器,它是安全的。我想也许我可以添加一个独特的自定义标题并告诉 gmail 这意味着它是一个安全的来源?
我对电子邮件和电子邮件服务器的更深层次的复杂性不是很熟悉,因此非常感谢任何帮助。