正確な違いは何ですか:
uwsgi_pass unix:/foo/bar.sock
と
uwsgi_pass unix:///foo/bar.sock
uwsgiパスのnginx cfgで?
django の運用環境にとってより良い選択は何ですか?
違い:
uwsgi_pass unix:/foo/bar.sock
と
uwsgi_pass unix:///foo/bar.sock
の間と同じです:
uwsgi_pass unix:/foo/bar.sock
と
uwsgi_pass unix:////////////////foo////bar.sock
または、次の間と同じ:
root /data/www/site.ru;
と
root ///data/www/site.ru;
私は確信しています、今あなたはポインを手に入れました。;)
ドキュメントの推奨uwsgi_pass unix:/var/run/example.com.sock;
構文。