Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Carlos Ribas
rnacentral-webcode
Commits
230805d7
Commit
230805d7
authored
Oct 05, 2020
by
carlosribas
Browse files
Nginx config file
parent
f550cf72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
nginx/conf.d/local.conf
nginx/conf.d/local.conf
+19
-0
No files found.
nginx/conf.d/local.conf
0 → 100644
View file @
230805d7
# Gunicorn application
upstream
rnacentral
{
server
rnacentral
:
8000
;
}
server
{
listen
80
;
server_name
localhost
;
location
/ {
# everything is passed to Gunicorn
proxy_pass
http
://
rnacentral
;
}
location
/
static
/ {
autoindex
on
;
alias
/
static
/;
}
}
\ No newline at end of file
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