> ## Documentation Index
> Fetch the complete documentation index at: https://ona.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure Gitpod

<Note>
  **Looking for a comprehensive guide on how to configure Gitpod workspaces?** <br /> <br /> See [Configuring Gitpod](/classic/user/configure/workspaces).
</Note>

## Workspaces

[Workspaces](/classic/user/configure/workspaces) are the developer environments where you code in Gitpod.

Workspaces can be created on their own, or as part of a [Repository](/classic/user/configure/repositories).

* [Workspace Image](/classic/user/configure/workspaces/workspace-image)
* [Tasks](/classic/user/configure/workspaces/tasks)
* [Ports](/classic/user/configure/workspaces/ports)
* [Collaboration](/classic/user/configure/workspaces/collaboration)
* [Multi-repo](/classic/user/configure/workspaces/multi-repo)
* [Environment Variables](/classic/user/configure/workspaces/environment-variables)
* [Workspace Classes](/classic/user/configure/workspaces/workspace-classes)
* [Workspace Editors](/classic/user/configure/workspaces/workspace-editors)

## User Settings

[User settings](/classic/user/configure/user-settings) allow you to customize your own personal Gitpod experience.

* [Browser Extension](/classic/user/configure/user-settings/browser-extension)
* [Browser Settings](/classic/user/configure/user-settings/browser-settings)
* [Browser Bookmarklet](/classic/user/configure/user-settings/browser-bookmarklet)
* [Dotfiles](/classic/user/configure/user-settings/dotfiles)
* [SSH](/classic/user/configure/user-settings/ssh)
* [Access Tokens](/classic/user/configure/user-settings/access-tokens)

## Repositories

[Repositories](/classic/user/configure/repositories) are the connection between Gitpod and one or more git repositories and allow you to manage [Prebuilds](/classic/user/configure/repositories/prebuilds). Like Workspaces, Repositories are always associated with an [Organization](/classic/user/configure/orgs).

* [Prebuilds](/classic/user/configure/repositories/prebuilds)
* [Environment Variables](/classic/user/configure/repositories/environment-variables)

## Organizations

[Organizations](/classic/user/configure/orgs) in Gitpod allow you to share projects and their settings amongst many organization individuals.

## Authentication

* [GitLab](/classic/payg/authentication/gitlab)
* [GitHub](/classic/payg/authentication/github)
* [Bitbucket](/classic/payg/authentication/bitbucket)
* [GitHub Enterprise](/classic/payg/authentication/github-enterprise)
* [Bitbucket Server](/classic/payg/authentication/bitbucket-server)
* [Azure DevOps](/classic/admin/scm-integrations/azure-devops)

## FAQs

### No internet access over HTTPS (port 443) on Docker containers with custom network

When creating a new Docker network and starting a fresh container, you might encounter issues with HTTPS requests not receiving a response. HTTP requests, however, work as expected.

This issue is likely caused by a wrong MTU (Maximum Transmission Unit) setting. To fix the problem, create a new network and specify the MTU value as 1440:

```bash theme={null}
docker network create mynetwork --opt "com.docker.network.driver.mtu=1440"
```

For more discussions related to MTU value causing problems, refer to the [Gitpod Discord](https://discord.com/channels/816244985187008514/1077511515525091329).
