-1

Ubuntuでapache2サーバーをセットアップする際に問題が発生しました。

sudo apt-get installを実行しましたが、正常にインストールされました。ローカルホストにアクセスするときにサイトが機能していることがわかりました。

何が起こったのかわかりませんが、「うまくいきました!」とは見えなくなりました。Webサイト。apache2を再起動しようとすると、次のように返されます。

Syntax error on line 17 of /etc/apache2/sites-enabled/000-default:
AddHandler requires at least two arguments, a handler name followed by one or more file extensions
Action 'configtest' failed. 
The Apache error log may have more information.
...fail!

何か案は?

これが私の/etc/ apache2 / sites-enabled/000-defaultです。

ServerAdmin webmaster @ localhost

DocumentRoot /var/www
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all

    DirectoryIndex index.html index.py

    AddHandler mod_python.py
    PythonHandler mod_python.publisher
    PythonDebug On
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Order allow,deny
    Allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog ${APACHE_LOG_DIR}/access.log combined

4

1 に答える 1

0

設定ファイルに問題があります。14 行目を次のように変更してみてください。

AddHandler mod_python .py
于 2013-02-22T13:04:12.370 に答える