Roberto De Ioris wrote in post #1048644:
–with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-openssl
–with-xmlrpc --with-xsl --with-bz2 --with-gettext
–with-fpm-user=www-data --with-fpm-group=www-data --disable-debug
–enable-fpm --enable-exif --enable-wddx --enable-zip --enable-bcmath
–enable-calendar --enable-ftp --enable-embed --enable-mbstring
–enable-soap --enable-sockets --enable-shmop --enable-dba
–enable-inline-optimization --enable-sysvsem --enable-sysvshm
–enable-sysvmsg
How would I then proceed to build the uWSGI php plugin?
download 1.1 uWSGI sources:
http://projects.unbit.it/downloads/uwsgi-1.1-snapshot5.tar.gz
uncompress and move to the resulting directory and run
make
if all goes well you will end with a binary named ‘uwsgi’
then build the php plugin with
python uwsgiconfig.py --plugin plugins/php
finally run (always from the same dir)
./uwsgi -s :3031 --plugins php
now point nginx to that port as described here:
The uWSGI project — uWSGI 2.0 documentation
–
Roberto De Ioris
http://unbit.it
Hi, I follow the tutorial of The uWSGI project — uWSGI 2.0 documentation
the server config in nginx is:
server {
listen 8080;
server_name www.myphp.com myphp.com;
location ~ .php {
root /var/www/php_test;
uwsgi_pass 127.0.0.1:3030;
include uwsgi_params;
}
}
Put a file name index.php in /var/www/php_test.
Than i run uwsgi -s :3030 --plugin php -M -p 4
the output is:
*** Starting uWSGI 1.1 (64bit) on [Sun Mar 18 17:57:32 2012] ***
compiled with version: 4.6.1 on 17 March 2012 17:44:26
current working directory: /home/delai/uwsgi
detected binary path: /usr/local/bin/uwsgi
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread mutexes
uwsgi socket 0 bound to TCP address :3030 fd 3
Python version: 2.7.2+ (default, Oct 4 2011, 20:41:12) [GCC 4.6.1]
Python main interpreter initialized at 0x6945a0
PHP 5.3.10 initialized
your server socket listen backlog is limited to 100 connections
*** Operational MODE: preforking ***
*** no app loaded. going in full dynamic mode ***
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 9385)
spawned uWSGI worker 1 (pid: 9386, cores: 1)
spawned uWSGI worker 2 (pid: 9387, cores: 1)
spawned uWSGI worker 3 (pid: 9388, cores: 1)
spawned uWSGI worker 4 (pid: 9389, cores: 1)
<<<
it looks fine.
when i visit http://myphp.com:8080/, nginx return 404 not found
visit http://myphp.com:8080/index.php, nginx return
“uWSGI Error
Python application not found”
php was recompiled and php plugin was configured.
Any one know Why?