Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
egg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
liu-puppet-modules
egg
Merge requests
!3
Devel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Devel
devel
into
test
Overview
0
Commits
3
Pipelines
2
Changes
2
Merged
Nils Olof Paulsson
requested to merge
devel
into
test
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
test
test (base)
and
latest version
latest version
4d5f51ee
3 commits,
1 year ago
2 files
+
61
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
files/egg.conf
0 → 100644
+
54
−
0
Options
server
{
server_name
teman
.
it
.
liu
.
se
;
root
/
var
/
www
/
teman
;
# Load configuration files for the default server block.
#include /etc/nginx/default.d/*.conf;
location
/ {
#expires -1;
}
error_page
404
/
404
.
html
;
location
= /
40
x
.
html
{
}
error_page
500
502
503
504
/
50
x
.
html
;
location
= /
50
x
.
html
{
}
}
server
{
listen
80
;
server_name
egg
.
it
.
liu
.
se
;
client_max_body_size
0
;
location
= /
favicon
.
ico
{
log_not_found
off
;
access_log
off
;
}
location
/
system
/ {
auth_request
/
auth
-
verify
;
root
/
var
/
www
/
nta
-
digital
-
portal
/
private
/
uploads
;
#root /var/www/ntadigital_temp/public;
}
location
/
auth
-
verify
{
internal
;
proxy_pass
http
://
localhost
:
3000
/
api
/
auth
/
verify
;
proxy_pass_request_body
off
;
proxy_set_header
Content
-
Length
""
;
proxy_set_header
X
-
Original
-
URI
$
request_uri
;
}
location
/ {
proxy_pass
http
://
localhost
:
3000
;
proxy_http_version
1
.
1
;
proxy_set_header
Upgrade
$
http_upgrade
;
proxy_set_header
Connection
'upgrade'
;
proxy_set_header
Host
$
host
;
proxy_cache_bypass
$
http_upgrade
;
}
}
\ No newline at end of file
Loading