How to wrap nginx/uwsgi around Flask?


 
Thread Tools Search this Thread
Operating Systems Linux Fedora How to wrap nginx/uwsgi around Flask?
# 1  
Old 07-18-2017
Wrench How to wrap nginx/uwsgi around Flask?

I've SSH installed a Python 3.5 application on CentOS along with uwsgi and nginx, but after doing a sudo vi /etc/nginx/nginx.conf to edit the nginx config file as per usual, the response is currently:

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)

these are the contents of the /etc/nginx/nginx.conf file:

Code:
sendfile            on;
tcp_nopush          on;
tcp_nodelay         on;
keepalive_timeout   65;
types_hash_max_size 2048;

include             /etc/nginx/mime.types;
default_type        application/octet-stream;

include /etc/nginx/conf.d/*.conf;

server {
    listen      [::]:80 default_server;
    server_name  _;
    root         /var/www/html/<directory//;

    location / {
    }

The server is currently showing an nginx error page.

This is the results of a sudo service nginx configtest:

Code:
2017/07/18 15:34:04 [crit] 2829#0: *41 connect() to unix:/var/www/html/pricing-service/socket.sock failed (2: No such file or directory) while connecting to upstream, client: 90.63.208.189, server: localhost, request: "HEAD [url]178.62.201.111:80/phpmyadmin2013/ 1.1", upstream: "uwsgi://unix:/var/www/html/pricing-service/socket.sock:", host: "178.62.201.111"

Smilie



Moderator's Comments:
Mod Comment Please use CODE tags correctly as required by forum rules! (Although trying to use them is appreciated!)

Last edited by RudiC; 07-18-2017 at 02:31 PM.. Reason: Changed ICODe to CODE tags.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to count respon time max min avg for nginx logs?

Hi All, need your help, i want count respon time max and average my nginx logs, based on hourly or minutes per api... my nginx.log sample : 10.1.1.1 - - "POST /v2/api/find/outlet/ HTTP/1.1" 200 2667 "-" "okhttp/3.12.0" "118.215.153.47" 0.178 0.178 . 10.1.1.1 - - "POST... (4 Replies)
Discussion started by: fajar_3t3
4 Replies

2. Red Hat

Security module in nginx

hi By the command yum install nginx Want a security modules Security modules such as virtual hosts I apply Do you know a quick solution? thanks (0 Replies)
Discussion started by: mnnn
0 Replies

3. Shell Programming and Scripting

Script to check response time from nginx logs

Hi, My goal is to monitor the response time from the access logs of nginx server. I am using gawk to print the needed fields - 'response time' and 'name of the service' from nginx logs. Command: gawk '($6 ~ /cloudservice/) {print $10, $6}' access.log Output: 0.645 /nc/cloudservice... (6 Replies)
Discussion started by: nshah11
6 Replies

4. UNIX for Dummies Questions & Answers

NGINX Setup

Here is my issue: I have two web servers hosting web services (Server A and Server B) I'd like to configure NGINX to achieve load balancing. Do I install NGINX on a third new server, or is it something that gets installed on Server A and Server B? Please share some information. ... (0 Replies)
Discussion started by: ramky79
0 Replies

5. UNIX for Dummies Questions & Answers

How to configure NGINX?

Hi , I installed NGINX and when i i go see the browser it says welcome If you see this page, the nginx web server is successfully installed and working. Further configuration is required. is there any kind of document to configure that(i am completly new for this) (1 Reply)
Discussion started by: vikatakavi
1 Replies

6. Infrastructure Monitoring

How to install Cacti (a system monitoring and graphing solution) with Nginx?

Here's a short tutorial on installing Cacti with Nginx on Linux. (0 Replies)
Discussion started by: notblog
0 Replies

7. Debian

How to update Nginx in Debian to current ver?

I did a fresh install of nginx on a debian server. When I check the version of nginx, it reports 0.7.67 However, the current stable version of Nginx is 1.0.5 from what I have read. How can I update my Nginx whilst leaving my server operational? I am a relative newb, so please do... (1 Reply)
Discussion started by: bugeye
1 Replies

8. Web Development

activecampaign rewrite rules for nginx webserver

Could you help me to write nginx rewite rules for activecampaign at present they only have a apache rewrite rules which to be put in .htaccess cat .htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # KB RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}... (0 Replies)
Discussion started by: unimaxlin
0 Replies

9. UNIX for Dummies Questions & Answers

word wrap in vi

I am using vi to edit shell scripts, but whenever I get to the end of the line it goes to the next line, and when I run the script it considers whatever was placed onthe next line a new command...I guess this has to do with word wrap- how do I continue to write on one line? (3 Replies)
Discussion started by: dangral
3 Replies
Login or Register to Ask a Question