我在线寻找资源但找不到任何东西。
如果我输入网址..
https://10.5.9.10:8460/helloworld.php
它会工作得很好和花花公子。
我进入网址的那一刻......
listen 192.168.1.1:12000;
access_log /var/log/nginx/webapp/access.log combined;
error_log /var/log/nginx/webapp/error.log warn;
charset utf-8;
index index.php;
root /opt/webapp/www;
keepalive_timeout 10;
location / {
if (-f $request_filename) {
break;
}
rewrite ^(.+)$ /index.php?q=$1 last;
}
location /images/ {
alias /opt/webapp/www/images/stuff/;
}
location /css/ {
alias /opt/webapp/www/css/stuff/;
}
fastcgi_intercept_errors on;
location ~* \.php$ {
fastcgi_pass 127.0.0.1:8000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
它将返回“未找到文件”。
nginx配置如下......
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
return super.dispatchKeyEvent(event);
}
private void showKeyboard() {
rv.setVisibilty(View.GONE);
((InputMethodManager) messageEditText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(messageEditText, InputMethodManager.SHOW_IMPLICIT);
}
如果有人能给我一个基本的错误,那将会很好。