Raspbian Firefox同期サーバー - URLが見つかりません

Raspbian Firefox同期サーバー - URLが見つかりません

私のRaspbian(カーネルバージョン3.10)でApache 2で独自の(ローカル)firefox-syncサーバーを作成しようとしていますが、firefox-syncが私が指定したURL( "ffsync.mraspberrypi.com")について文句を言います!

私がしたこと:


1)まず私はこれに従う地図時間Firefox 同期サーバー設定用 (情報: 目的の目的に合わせてフォルダ名を「syncserver」から「ffsyncserver」に変更)。

関連ファイルの修正:

(/opt/ffsyncserver/server-full/development.ini)

[server:main]
use = egg:Paste#http    # not sure about what to insert here!
host = localhost        # not sure about what to insert here!
port = 5000
use_threadpool = True
threadpool_workers = 60

[app:main]
use = egg:SyncServer
configuration = file:%(here)s/etc/sync.conf

[handler_syncserver_errors]
args = ('/opt/ffsyncserver/server-full/logs/sync-error.log',)

(/opt/ffsyncserver/server-full/etc/sync.conf)

[storage]
sqluri = sqlite:////opt/ffsyncserver/server-full/db/ffsync.db
quota_size = 25600

[auth]
sqluri = sqlite:////opt/ffsyncserver/server-full/db/ffsync.db
allow_new_users = true

[nodes]
fallback_node = http://ffsync.mraspberrypi.com

[smtp]
host = localhost
port = 25
sender = [email protected]

[reset_code]
sqluri = sqlite:////opt/ffsyncserver/server-full/db/ffsync.db

2)その後、このコマンドを使用してApache 2とmod_wsgiをインストールしました。

sudo apt-get install apache2 apache2-doc libapache2-mod-wsgi

関連ファイルの修正:

(/etc/apache2/httpd.conf)

ServerName ffsync.mraspberrypi.com

(/etc/apache2/conf.d/fqdn ファイルの生成)

ServerName ffsync.mraspberrypi.com

また、/etc/apache2/sites-available/firefox-sync ファイルを作成し、/etc/apache2/sites-enabled/ フォルダに接続しました。

<Directory /opt/ffsyncserver/server-full>
    Require all granted
</Directory>

<VirtualHost *:80>
    ServerName ffsync.mraspberrypi.com
    ServerAdmin [email protected]

    DocumentRoot /opt/ffsyncserver/server-full

    CustomLog ${APACHE_LOG_DIR}/ffsyncserver_access.log combindes
    ErrorLog ${APACHE_LOG_DIR}/ffsyncserver_error.log

    WSGIProcessGroup ffsync
    WSGIDaemonProcess ffsync user=ffsync group=ffsync processes=2 threads=25
    WSGIPassAuthorization On
    WSGIScriptAlias / /opt/ffsyncserver/server-full/sync.wsgi
</VirtualHost>

たとえば、apache2サーバーを起動した後、RPiのIPを使用してデフォルトのWebページを表示できますが、「ffsync.raspberrypi.com」と入力すると機能しません。

上記のURLでFirefox-Syncを使用しようとすると、そのURLが無効であるというメッセージが表示されます。

それでは、問題は何ですか?

ベストアンサー1

おすすめ記事