Skip to content
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

Update log shipper docs to ensure that no public access is granted #930

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions going-to-production/monitoring/exporting-logs.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,12 @@ fly secrets set LOGTAIL_TOKEN=<token provided by logtail source>

You can configure as many providers as you'd like by adding more secrets. The secrets needed are determined by [which provider(s)](https://github.com/superfly/fly-log-shipper#provider-configuration) you want to use.

Before launching your application, you should edit the generated `fly.toml` file and delete the entire `[[services]]` section. Replace it with this:
Before launching your application, you should edit the generated `fly.toml` file and delete the entire `[[http_service]]` section.

```toml
[[services]]
http_checks = []
internal_port = 8686
```

Then you can deploy it:
Then you can deploy:

```cmd
fly deploy
fly deploy --no-public-ips
```

## Shipping Specific Logs
Expand Down