Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfaas-faas
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
Releases
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
Team Jaz CS 598 CCC Final Project
openfaas-faas
Commits
ac2cf464
Commit
ac2cf464
authored
7 years ago
by
Austin Frey
Committed by
Alex Ellis
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed curl commands to use correct paths
Signed-off-by:
Austin Frey
<
aafrey85@gmail.com
>
parent
62a8884a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
guide/traefik_integration.md
+6
-6
6 additions, 6 deletions
guide/traefik_integration.md
with
6 additions
and
6 deletions
guide/traefik_integration.md
+
6
−
6
View file @
ac2cf464
...
...
@@ -103,12 +103,12 @@ $ ./deploy_stack.yml
#### Test
```
$ curl -u user:password -X POST http://localhost/
openfaas/
function/func_echoit -d "hello OpenFaaS"
$ curl -u user:password -X POST http://localhost/function/func_echoit -d "hello OpenFaaS"
hello OpenFaaS
$curl -X POST http://localhost/
openfaas/
function/func_echoit -d "hello OpenFaaS"
$curl -X POST http://localhost/function/func_echoit -d "hello OpenFaaS"
401 Unauthorized
```
Visit the browser UI at
`http://localhost/
openfaas
`
. You should
Visit the browser UI at
`http://localhost/
ui/
`
. You should
be greeted with a login alert.
## Configure Traefik with SSL Support
...
...
@@ -165,11 +165,11 @@ $ ./deploy_stack.sh
#### Test
```
$ curl -u user:password -X POST https://your-domain.com/
openfaas/
function/func_echoit -d "hello OpenFaaS"
$ curl -u user:password -X POST https://your-domain.com/function/func_echoit -d "hello OpenFaaS"
hello OpenFaaS
$curl -X POST https://your-domain.com/
openfaas/
function/func_echoit -d "hello OpenFaaS"
$curl -X POST https://your-domain.com/function/func_echoit -d "hello OpenFaaS"
401 Unauthorized
```
Visit the browser UI at
`https://your-domain.com/
openfaas
`
. You should
Visit the browser UI at
`https://your-domain.com/
ui/
`
. You should
be greeted with a login alert.
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