- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想在我的服务器 - Ubuntu 服务器上测试 mod_wsgi。
我的 .htaccess:
LoadModule wsgi_module modules/mod_wsgi.so
WSGIScriptAlias / /home/apps/hello.py
我的 hello.py:
def application(environ, start_response):
status = '200 OK'
output = 'Hello World!'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
Apache 返回:
.htaccess: LoadModule not allowed here
我的 apache conf (/etc/apache2/sites-enabled/000-default):
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/>
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 /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
.htaccess 在/var/www/sub/
这有什么问题吗?
最佳答案
来自 Apache 文档:
Description: Links in the object file or library, and adds to the list of active modules
Syntax: LoadModule module filename
Context: server config
Status: Extension
Module: mod_so
因为它的上下文是Server config
,所以你不能在.htaccess
中使用它。
关于python - Mod_wsgi 问题 - 此处不允许使用 LoadModule,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9425785/
尝试在 Ubuntu 16.04 上安装 LAMP(Linux、Apache、MySQL、PHP)并测试是否正确设置了 apache 服务器。 无法弄清楚这个错误。 apache 服务已经安装,但我正
我想在我的服务器 - Ubuntu 服务器上测试 mod_wsgi。 我的 .htaccess: LoadModule wsgi_module modules/mod_wsgi.so WSGIScri
我在 httpd.conf 中安装了 apache2 和 php5.2 作为模块: LoadModule php5_module "c:/php/php5apache2_2.dll" PHPIniDi
我想用 apache mod_wsgi 运行 django 站点,但是根据 django 文档,每当我在 httpd.conf 文件中写以下内容时: WSGIScriptAlias / /path/t
我通过装饰 $controller 服务来装饰 Controller “originalCtrl”: //module declaration angular.module('decorationMo
我是一名优秀的程序员,十分优秀!