Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
jijisa
/
porch
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5629c26a
authored
Mar 22, 2017
by
Heechul Kim
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Added nginx and uwsgi config sample files.
parent
e5ba1bc5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
conf/nginx_porch
conf/uwsgi.ini
conf/nginx_porch
0 → 100644
View file @
5629c26a
server {
listen 80;
server_name _;
root /home/jijisa/porch/web;
location /api { try_files $uri @porch; }
location @porch {
include uwsgi_params;
uwsgi_pass unix:/home/jijisa/porch/porch.sock;
}
}
conf/uwsgi.ini
0 → 100644
View file @
5629c26a
[uwsgi]
workers
=
2
uid
=
jijisa
master
=
true
socket
=
/home/%(uid)/porch/porch.sock
chmod-socket
=
666
manage-script-name
=
true
mount
=
/=wsgi:app
daemonize
=
/home/%{uid)/porch/porch.log
master
=
true
procname
=
porch
pidfile
=
/home/%{uid)/porch/porch.pid
vacuum
=
true
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment