# Server Fault Nginx Q&A Knowledge Dataset

**Use case:** 

Scrape Server Fault nginx timeout questions, answers, tags, votes, views, and URLs for support and RAG workflows.

## Input

```json
{
  "site": "serverfault",
  "query": "nginx reverse proxy timeout",
  "tags": [
    "web-scraping"
  ],
  "sort": "votes",
  "order": "desc",
  "maxQuestions": 100,
  "includeAnswers": true,
  "includeComments": false
}
```

## Output

```json
{
  "site": {
    "label": "Site"
  },
  "questionId": {
    "label": "Question ID"
  },
  "title": {
    "label": "Title"
  },
  "questionUrl": {
    "label": "Question URL",
    "format": "link"
  },
  "tags": {
    "label": "Tags"
  },
  "ownerDisplayName": {
    "label": "Owner"
  },
  "score": {
    "label": "Score"
  },
  "viewCount": {
    "label": "Views"
  },
  "answerCount": {
    "label": "Answers"
  },
  "commentCount": {
    "label": "Comments"
  },
  "isAnswered": {
    "label": "Answered"
  },
  "creationDate": {
    "label": "Created"
  },
  "lastActivityDate": {
    "label": "Last activity"
  },
  "fetchedAt": {
    "label": "Fetched at"
  }
}
```

## About this Actor

This example demonstrates how to use [Stack Exchange Questions & Answers Scraper](https://apify.com/automation-lab/stack-exchange-questions-answers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/stack-exchange-questions-answers-scraper) to learn more, explore other use cases, and run it yourself.