Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gga_load_data
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
abims
e-infra
gga_load_data
Merge requests
!2
Corrections cloud
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Corrections cloud
corrections_cloud
into
dev
Overview
15
Commits
15
Pipelines
0
Changes
11
Merged
Arthur Le Bars
requested to merge
corrections_cloud
into
dev
3 years ago
Overview
15
Commits
15
Pipelines
0
Changes
1
Expand
👍
0
👎
0
Merge request reports
Viewing commit
94db8d73
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
94db8d73
changed output dir for galaxy_nginx.conf writing
· 94db8d73
Arthur Le Bars
authored
3 years ago
gga_init.py
+
1
−
1
Options
@@ -79,7 +79,7 @@ class DeploySpeciesStack(speciesData.SpeciesData):
# Write galaxy_nginx.conf
try
:
with
open
(
os
.
path
.
abspath
(
os
.
path
.
join
(
self
.
script
_dir
,
"
galaxy_nginx.conf
"
)),
"
w
"
)
as
galaxy_nginx_conf
:
with
open
(
os
.
path
.
abspath
(
os
.
path
.
join
(
self
.
main
_dir
,
"
galaxy_nginx.conf
"
)),
"
w
"
)
as
galaxy_nginx_conf
:
galaxy_nginx_conf
.
truncate
(
0
)
galaxy_nginx_conf
.
write
(
"
uwsgi_param QUERY_STRING $query_string;
"
)
galaxy_nginx_conf
.
write
(
"
uwsgi_param REQUEST_METHOD $request_method;
"
)
Loading