- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
刚刚来到 Arch 方面。我在让我的本地 LEMP 堆栈在 Antergos 上工作时遇到了很多麻烦。当前服务器 block 本地页面返回 403 错误。
/etc/nginx/nginx.conf:
#user html;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
include sites-enabled/*;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
/etc/nginx/sites-available/projects.local
server {
listen 80;
#listen [::]:80;
server_name project.local www.project.local;
root /home/l/install/project/www;
access_log /home/l/install/project/www/log/access.log;
error_log /home/l/install/project/www/log/error.log;
location / {
index index.html index.htm index.php;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
错误日志中的最后一个条目:
"GET /test/index.html HTTP/1.1", host: "project.local" 2016/06/28 12:18:45 [error] 28652#28652: *1 open() "/home/l/install/project/www/test" failed (13: Permission denied), client: 127.0.0.1, server: project.local, request: "GET /test HTTP/1.1", host: "project.local"
www 文件夹的 ls -la 显示:
[l@l project]$ ls -la total 12 drwxr-xr-x 3 l users 4096 Jun 28 10:14 . drwxr-xr-x 4 l users 4096 Jun 28 10:13 .. drwxrwxrwx 4 l users 4096
在www文件夹里面有一个test文件夹,也是'l users',test文件夹里面的index.php也分别属于l和users。
编辑:问题被视为已关闭。移动到 Ubuntu 16.04 Gnome。
最佳答案
尝试将您的 www
目录移到 /home
之外。例如,您可以将其移动到 /srv/www
并将目录的所有者更改为 html
用户和组:
sudo mv /home/l/www /srv
sudo chown -R html:html /srv/www
请务必相应地更新您的 nginx.conf
。希望对您有所帮助!
关于php - Antergos Linux - LEMP 堆栈 - Nginx 403,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38084963/
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
操作系统:Antergos(Linux) 这里的问题是缺少 Android SDK,我无法从 android-studio-2.2 或 AUR 安装它。 当我尝试从 Android SDK 安装它时,
每次我尝试运行最新版本的 Neo4j(2.3.2 社区)时,我都会收到一个不断循环的错误。 [telmo@Telmo-LT neo4j-community-2.3.2]$ bin/neo4j star
刚刚来到 Arch 方面。我在让我的本地 LEMP 堆栈在 Antergos 上工作时遇到了很多麻烦。当前服务器 block 本地页面返回 403 错误。 /etc/nginx/nginx.conf:
我已经在 Antergos (Arch Linux) 上安装了 docker 并遵循了本指南:https://gist.github.com/simonhoye/3b7312c05a449cd9073
我正在 Antergos Linux 环境中的 android studio 上开发应用程序。同步、构建和调试一切正常。一天前,经过一些更新,它不再构建了。源代码完全相同,我已经尝试将我的代码重置为之
我是一名优秀的程序员,十分优秀!