有没有办法在 Gnome 经典桌面中使用 Unity 锁屏?
我喜欢 unity 淡出主屏幕以锁定会话的方式,而我对经典窗口管理器显示的窗口不感兴趣。
我知道这是一个常见问题,主要是用户权限问题www-data
,但是按照本指南,我遇到了经典错误:
403 forbidden
You don't have permission to access /web on this server.
Run Code Online (Sandbox Code Playgroud)
尽管有很多人面临同样的问题,但我无法在网上找到解决方案。对不起!:)
这是我的000-default.conf
文件
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /home/tom/Dropbox/web
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/tom/Dropbox/web>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride All
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /home/tom/Dropbox/web/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg. …
Run Code Online (Sandbox Code Playgroud)