मेरी होम डाइरेक्टरी में ट्रीियो प्रोजेक्ट है, अब मैं उस ट्रीयो को नॅग्नेक्स सर्वर में चलाना चाहता हूं। पहले से ही जिओ पर स्वतंत्र रूप से ट्रीियो चल सकता है जो स्रोत के साथ आता है। मैं उसे Django सर्वर में नहीं चलाना चाहता, लेकिन मैं इसे nginx सर्वर पर चलाना चाहता हूं। मैंने कार्तिक के इस उत्तर में दिए गए कदमों का पालन किया ।
हालाँकि, उस उत्तर से चरण 4 को निष्पादित या अनुसरण करते समय, यह निम्नलिखित त्रुटि को फेंकता है:
[uWSGI] getting INI configuration from uwsgi.ini
* Starting uWSGI 1.0.3-debian (32bit) on [Thu Jun 27 17:22:01 2013] *
compiled with version: 4.6.3 on 17 July 2012 02:24:04
current working directory: /home/rajesh/treeio
detected binary path: /usr/bin/uwsgi-core
chdir(): No such file or directory [uwsgi.c line 1723]
मेरी uwsgi.ini
फ़ाइल में है
[uwsgi]
# set the http port
http = :8080
# change to django project directory
chdir = /home/treeio/
# add /var/www to the pythonpath, in this way we can use the project.app format
pythonpath = /var/www
# set the project settings name
env = DJANGO_SETTINGS_MODULE=treeio.settings
# load django
module = django.core.handlers.wsgi:WSGIHandler()
कृपया नगीनेक्स सर्वर में ट्रीियो को तैनात करने में मेरी मदद करें।
uwsgi.ini
अपने प्रश्न में कॉन्फ़िगरेशन ( और nginx) शामिल करें। और उन चरणों के उत्तर / सूची से भी लिंक करें जिनका आप उल्लेख कर रहे हैं (वे दूसरे प्रश्न में हैं?)।