-
Notifications
You must be signed in to change notification settings - Fork 13
add option for custom configs #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pablodav
wants to merge
49
commits into
marvinpinto:master
Choose a base branch
from
CoffeeITWorks:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
a635f1e
add option for custom configs
pablodav 1513ba1
SSL Nginx server configuration.
229d58d
Se agregan logs a nginx ssl template.
2fb337a
Fix log.
1635bd8
Fix.
c6114e9
Fix.
3e78681
Fix.
6f04a6f
Fix.
7218557
Fix.
d4df326
Test.
1cf8f11
Test.
3705a91
Fix.
3f8f760
fix hardcoded paths and readme for ssl
pablodav 1e5f92f
Add location to template ssl in server http.
368aa22
Test.
bb9c727
Test.
95ecf6e
Fix.
57951ec
Test.
5731022
Fix.
16409dc
test
60a8ca4
Exposed ports added 443.
85e64a5
Fix.
12f9580
test.
e1887b9
Test.
9618871
Revert.
af4d72f
Add "include /etc/nginx/mime.types;" to template ssl inside location.
1c8e95e
Test.
8cc939c
Test
52d1aa5
Test.
6d803cb
Test.
86c9872
Fix.
ce98aab
fixes to ssl template
pablodav e1461d4
missing proxy_pass and other settings on default location
pablodav c223047
Merge pull request #1 from CoffeeITWorks/ssl_nginx_servers
pablodav fa14d80
change molecule tests
pablodav 85c67c2
fixes on molecule tests
pablodav 354e848
fixes on molecule tests
pablodav 6da8d45
Update reverse-proxy-ssl.conf.j2
matiasgrana 9e9b58e
Update reverse-proxy.conf.j2
matiasgrana 8101560
Update main.yml
matiasgrana 0546f50
Update reverse-proxy-ssl.conf.j2
matiasgrana 43993d9
Update reverse-proxy.conf.j2
matiasgrana 0a38eae
Update reverse-proxy-ssl.conf.j2
matiasgrana 580bc44
Update main.yml
espinosaemanuele 02cfc40
Add skip ssl verify for https backends
AgustinBentancor 67229d6
Create reverse-proxy-ssl-cloud.conf.j2
matiasgrana 652fcc1
Update main.yml
matiasgrana d55151c
Create reverse-proxy-ssl-onprem.conf.j2
matiasgrana b913f8f
Update main.yml
matiasgrana File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.molecule | ||
.cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
# Based on ansible-lint config | ||
extends: default | ||
|
||
rules: | ||
braces: | ||
max-spaces-inside: 1 | ||
level: error | ||
brackets: | ||
max-spaces-inside: 1 | ||
level: error | ||
colons: | ||
max-spaces-after: -1 | ||
level: error | ||
commas: | ||
max-spaces-after: -1 | ||
level: error | ||
comments: disable | ||
comments-indentation: disable | ||
document-start: disable | ||
empty-lines: | ||
max: 3 | ||
level: error | ||
hyphens: | ||
level: error | ||
indentation: disable | ||
key-duplicates: enable | ||
line-length: disable | ||
new-line-at-end-of-file: disable | ||
new-lines: | ||
type: unix | ||
trailing-spaces: disable | ||
truthy: disable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
pre_tasks: | ||
- name: Update apt cache. | ||
apt: update_cache=yes cache_valid_time=600 | ||
when: ansible_os_family == 'Debian' | ||
|
||
- name: Wait for systemd to complete initialization. # noqa 303 | ||
command: systemctl is-system-running | ||
register: systemctl_status | ||
until: > | ||
'running' in systemctl_status.stdout or | ||
'degraded' in systemctl_status.stdout | ||
retries: 30 | ||
delay: 5 | ||
when: ansible_service_mgr == 'systemd' | ||
changed_when: false | ||
failed_when: systemctl_status.rc > 1 | ||
|
||
roles: | ||
- role: geerlingguy.docker | ||
- role: ansible-role-docker-nginx |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use a dict instead of items ?
Task should be: