Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lab3_Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Model registry
Operate
Environments
Terraform modules
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
alexandr.benzonan
lab3_Ansible
Commits
df6d3795
Commit
df6d3795
authored
2 years ago
by
alexandr.benzonan
Browse files
Options
Downloads
Patches
Plain Diff
allow only connexion fron 10.0.0.0/24
parent
a7ea1c39
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
nginx_conf.j2
+17
-0
17 additions, 0 deletions
nginx_conf.j2
with
17 additions
and
0 deletions
nginx_conf.j2
0 → 100644
+
17
−
0
View file @
df6d3795
server{
listen 80 default_server;
listen [::]:80 default_server;
allow {{allowed_ips}};
deny all;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment